/PHP-7.1/ext/standard/tests/array/ |
H A D | range_errors.phpt | 10 echo "\n-- Testing ( (low < high) && (step = 0) ) --"; 14 echo "\n\n-- Testing ( (low > high) && (step = 0) ) --"; 18 echo "\n\n-- Testing ( (low < high) && (high-low < step) ) --"; 21 echo "\n\n-- Testing ( (low > high) && (low-high < step) ) --"; 36 foreach( $step_arr as $step ) { 37 var_dump( range( 1, 5, $step ) ); 45 -- Testing ( (low < high) && (step = 0) ) -- 46 Warning: range(): step exceeds the specified range in %s on line %d 53 -- Testing ( (low > high) && (step = 0) ) -- 61 -- Testing ( (low < high) && (high-low < step) ) -- [all …]
|
H A D | range.phpt | 39 echo "\n-- Passing step with Low and High --\n"; 46 echo "\n-- Testing basic string with step --\n"; 333 -- Passing step with Low and High -- 431 -- Testing basic string with step --
|
/PHP-7.1/ext/standard/tests/streams/ |
H A D | proc_open_bug51800_right2.phpt | 27 $step = 1024; 30 fwrite(STDOUT, substr($data0, $i0, $step)); 31 fwrite(STDERR, substr($data1, $i1, $step)); 32 $i0 += $step; 33 $i1 += $step;
|
/PHP-7.1/Zend/tests/generators/ |
H A D | xrange.phpt | 6 function xrange($start, $end, $step = 1) { 7 for ($i = $start; $i <= $end; $i += $step) {
|
/PHP-7.1/ext/pdo_sqlite/ |
H A D | php_pdo_sqlite_int.h | 41 zval func, step, fini; member
|
H A D | sqlite_driver.c | 124 if (!Z_ISUNDEF(func->step)) { in pdo_sqlite_cleanup_callbacks() 125 zval_ptr_dtor(&func->step); in pdo_sqlite_cleanup_callbacks() 457 do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_func_step_callback() 623 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD()
|
/PHP-7.1/sapi/phpdbg/ |
H A D | phpdbg_prompt.h | 37 PHPDBG_COMMAND(step);
|
H A D | README.md | 71 - -E enable step through eval()
|
H A D | phpdbg_prompt.c | 74 …PHPDBG_COMMAND_D(step, "step through execution", 's', NULL, 0, PHPDBG_ASYNC… 646 PHPDBG_COMMAND(step) /* {{{ */ in PHPDBG_COMMAND() argument
|
H A D | xml.md | 399 step section 563 - sets stepping to either opcode or line (so a step command will either advance one op or one line)
|
/PHP-7.1/ext/sqlite3/ |
H A D | php_sqlite3_structs.h | 59 zval func, step, fini; member
|
H A D | sqlite3.c | 846 sqlite3_do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_callback_step() 1004 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD() 2108 if (!Z_ISUNDEF(func->step)) { in php_sqlite3_object_free_storage() 2109 zval_ptr_dtor(&func->step); in php_sqlite3_object_free_storage()
|
/PHP-7.1/ext/snmp/ |
H A D | snmp.c | 367 int step; member 727 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal() 755 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal() 893 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal() 894 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal() 895 objid_query->step /= 2; in php_snmp_internal() 1098 objid_query->step = objid_query->count; in php_snmp_parse_oid() 1512 objid_query.step = snmp_object->max_oids; in php_snmp()
|
/PHP-7.1/ext/standard/ |
H A D | array.c | 2068 double __calc_size = ((start - end) / step) + 1; \ 2095 double step = 1.0; local 2116 step = zval_get_double(zstep); 2119 if (step < 0.0) { 2120 step *= -1; 2128 zend_long lstep = (zend_long) step; 2206 if (low - high < step || step <= 0) { 2220 if (high - low < step || step <= 0) { 2247 if (step <= 0) { 2252 lstep = step; [all …]
|
/PHP-7.1/ext/standard/tests/file/windows_acls/ |
H A D | common.inc | 111 returns false. If the $perm_entry contains 'N' skip this step.
|
/PHP-7.1/ext/ldap/tests/ |
H A D | README | 55 The next step is to go into the PHP-Source-directory. Configure and make the source as appropriate.
|
/PHP-7.1/ |
H A D | README.MAILINGLIST_RULES | 63 2. Consider taking a step back from a very active thread now and then. Maybe
|
H A D | INSTALL | 242 --with-config-file-path=/some/path in step 5. 293 step 3 above: 455 6. For the following step, make sure /opt/netscape/suitespot/ is where
|
/PHP-7.1/ext/ |
H A D | ext_skel | 327 step 6 confirms that your module is compiled into PHP. Then, start writing
|
/PHP-7.1/main/streams/ |
H A D | streams.c | 1424 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local 1465 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem() 1467 max_len = step; in _php_stream_copy_to_mem() 1476 result = zend_string_extend(result, max_len + step, persistent); in _php_stream_copy_to_mem() 1477 max_len += step; in _php_stream_copy_to_mem()
|
/PHP-7.1/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_unbuffered_2050.phpt | 41 PDO::query() will prepare and execute a statement in one step.
|
/PHP-7.1/ext/sqlite3/libsqlite/ |
H A D | sqlite3ext.h | 138 int (*step)(sqlite3_stmt*); member 452 #define sqlite3_step sqlite3_api->step
|
/PHP-7.1/ext/pdo_odbc/tests/ |
H A D | long_columns.phpt | 36 // 7. set the environment variable PDOTEST_DSN="odbc:<system dsn from step 5>" ex: SET PDOTEST_DSN=…
|
/PHP-7.1/ext/phar/ |
H A D | TODO | 79 would need to be performed in an installation step, phar would not attempt
|
/PHP-7.1/win32/ |
H A D | install.txt | 269 The next step is to set up a valid configuration file for PHP, php.ini. 296 follow the next step. Set the doc_root to point to your web servers 309 PHP is now setup on your system. The next step is to choose a web 375 step as it provides crucial information for installing PHP on 438 (and should) skip this step. Under ISAPI Filters, add a new ISAPI 711 shellcgi directory and remove it just after (this step creates 5
|