/PHP-5.5/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) ) --"; 34 foreach( $step_arr as $step ) { 35 var_dump( range( 1, 5, $step ) ); 43 -- Testing ( (low < high) && (step = 0) ) -- 44 Warning: range(): step exceeds the specified range in %s on line %d 51 -- Testing ( (low > high) && (step = 0) ) -- 59 -- 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-5.5/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-5.5/Zend/tests/generators/ |
H A D | xrange.phpt | 6 function xrange($start, $end, $step = 1) { 7 for ($i = $start; $i <= $end; $i += $step) {
|
/PHP-5.5/ext/ereg/regex/ |
H A D | engine.c | 14 #define step sstep macro 25 #define step lstep macro 644 st = step(m->g, startst, stopst, st, NOTHING, st); 670 st = step(m->g, startst, stopst, st, flagch, st); 684 st = step(m->g, startst, stopst, st, flagch, st); 696 st = step(m->g, startst, stopst, tmp, c, st); 737 st = step(m->g, startst, stopst, st, NOTHING, st); 773 st = step(m->g, startst, stopst, st, flagch, st); 787 st = step(m->g, startst, stopst, tmp, c, st); 812 step(g, start, stop, bef, ch, aft) in step() function [all …]
|
H A D | engine.ih | 12 static states step(register struct re_guts *g, sopno start, sopno stop, register states bef, int ch…
|
/PHP-5.5/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 (func->step) { in pdo_sqlite_cleanup_callbacks() 125 zval_ptr_dtor(&func->step); in pdo_sqlite_cleanup_callbacks() 470 do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); in php_sqlite3_func_step_callback() 647 MAKE_STD_ZVAL(func->step); in PHP_METHOD() 648 MAKE_COPY_ZVAL(&step_callback, func->step); in PHP_METHOD()
|
/PHP-5.5/ext/sqlite3/ |
H A D | php_sqlite3_structs.h | 61 zval *func, *step, *fini; member
|
H A D | sqlite3.c | 846 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); 1013 MAKE_STD_ZVAL(func->step); 1014 MAKE_COPY_ZVAL(&step_callback, func->step); 2069 if (func->step) { 2070 zval_ptr_dtor(&func->step);
|
/PHP-5.5/ext/snmp/ |
H A D | snmp.c | 378 int step; member 742 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal() 770 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal() 910 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal() 911 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal() 912 objid_query->step /= 2; in php_snmp_internal() 1119 objid_query->step = objid_query->count; in php_snmp_parse_oid() 1533 objid_query.step = snmp_object->max_oids; in php_snmp()
|
/PHP-5.5/ext/standard/ |
H A D | array.c | 1593 double step = 1.0; in PHP_FUNCTION() local 1607 step = Z_DVAL_P(zstep); in PHP_FUNCTION() 1610 if (step < 0.0) { in PHP_FUNCTION() 1611 step *= -1; in PHP_FUNCTION() 1622 long lstep = (long) step; in PHP_FUNCTION() 1679 if (low - high < step || step <= 0) { in PHP_FUNCTION() 1684 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION() 1688 if (high - low < step || step <= 0) { in PHP_FUNCTION() 1693 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION() 1707 lstep = (long) step; in PHP_FUNCTION()
|
/PHP-5.5/ext/sqlite3/libsqlite/ |
H A D | sqlite3ext.h | 140 int (*step)(sqlite3_stmt*); member 387 #define sqlite3_step sqlite3_api->step
|
/PHP-5.5/ext/standard/tests/file/windows_acls/ |
H A D | common.inc | 111 returns false. If the $perm_entry contains 'N' skip this step.
|
/PHP-5.5/ext/ |
H A D | ext_skel | 296 step 6 confirms that your module is compiled into PHP. Then, start writing
|
/PHP-5.5/ |
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 | 216 step 10. 446 --with-config-file-path=/some/path in step 5. 497 step 3 above: 659 6. For the following step, make sure /opt/netscape/suitespot/ is where
|
/PHP-5.5/main/streams/ |
H A D | streams.c | 1430 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local 1468 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem() 1470 max_len = step; in _php_stream_copy_to_mem() 1478 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); in _php_stream_copy_to_mem() 1479 max_len += step; in _php_stream_copy_to_mem()
|
/PHP-5.5/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-5.5/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-5.5/sapi/nsapi/ |
H A D | nsapi-readme.txt | 11 probably skip this step. The start script is located in:
|
/PHP-5.5/ext/phar/ |
H A D | TODO | 79 would need to be performed in an installation step, phar would not attempt
|
/PHP-5.5/win32/ |
H A D | install.txt | 278 The next step is to set up a valid configuration file for PHP, php.ini. 305 follow the next step. Set the doc_root to point to your web servers 318 PHP is now setup on your system. The next step is to choose a web 384 step as it provides crucial information for installing PHP on 447 (and should) skip this step. Under ISAPI Filters, add a new ISAPI 720 shellcgi directory and remove it just after (this step creates 5
|
/PHP-5.5/ext/mbstring/libmbfl/ |
H A D | LICENSE | 48 We protect your rights with a two-step method: (1) we copyright the
|
/PHP-5.5/Zend/ |
H A D | ZEND_CHANGES | 1136 (supports breakpoints, expression evaluation, step-in/over,
|