Home
last modified time | relevance | path

Searched refs:step (Results 1 – 25 of 34) sorted by relevance

12

/PHP-7.1/ext/standard/tests/array/
H A Drange_errors.phpt10 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 Drange.phpt39 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 Dproc_open_bug51800_right2.phpt27 $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 Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-7.1/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h41 zval func, step, fini; member
H A Dsqlite_driver.c124 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 Dphpdbg_prompt.h37 PHPDBG_COMMAND(step);
H A DREADME.md71 - -E enable step through eval()
H A Dphpdbg_prompt.c74 …PHPDBG_COMMAND_D(step, "step through execution", 's', NULL, 0, PHPDBG_ASYNC…
646 PHPDBG_COMMAND(step) /* {{{ */ in PHPDBG_COMMAND() argument
H A Dxml.md399 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 Dphp_sqlite3_structs.h59 zval func, step, fini; member
H A Dsqlite3.c846 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 Dsnmp.c367 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 Darray.c2068 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 Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-7.1/ext/ldap/tests/
H A DREADME55 The next step is to go into the PHP-Source-directory. Configure and make the source as appropriate.
/PHP-7.1/
H A DREADME.MAILINGLIST_RULES63 2. Consider taking a step back from a very active thread now and then. Maybe
H A DINSTALL242 --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 Dext_skel327 step 6 confirms that your module is compiled into PHP. Then, start writing
/PHP-7.1/main/streams/
H A Dstreams.c1424 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 Dpdo_mysql_stmt_unbuffered_2050.phpt41 PDO::query() will prepare and execute a statement in one step.
/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3ext.h138 int (*step)(sqlite3_stmt*); member
452 #define sqlite3_step sqlite3_api->step
/PHP-7.1/ext/pdo_odbc/tests/
H A Dlong_columns.phpt36 // 7. set the environment variable PDOTEST_DSN="odbc:<system dsn from step 5>" ex: SET PDOTEST_DSN=…
/PHP-7.1/ext/phar/
H A DTODO79 would need to be performed in an installation step, phar would not attempt
/PHP-7.1/win32/
H A Dinstall.txt269 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

Completed in 81 milliseconds

12