/PHP-7.0/ext/standard/tests/general_functions/ |
H A D | proc_open_pipes3.phpt | 9 $spec[$i] = array('pipe', 'w'); 15 $spec[$i] = array('pi'); 16 proc_open("$php -n $callee", $spec, $pipes); 18 $spec[$i] = 1; 19 proc_open("$php -n $callee", $spec, $pipes); 21 $spec[$i] = array('pipe', "test"); 22 proc_open("$php -n $callee", $spec, $pipes); 25 $spec[$i] = array('file', "test", "z"); 26 proc_open("$php -n $callee", $spec, $pipes); 39 Warning: proc_open(): pi is not a valid descriptor spec/mode in %s on line %d
|
H A D | proc_open_pipes2.phpt | 8 $spec = array(); 12 proc_open("$php -n $callee", $spec, $pipes); 14 var_dump(count($spec));
|
H A D | proc_open_pipes1.phpt | 9 $spec[$i] = array('pipe', 'w'); 14 proc_open("$php -n $callee", $spec, $pipes); 16 var_dump(count($spec));
|
/PHP-7.0/ext/standard/tests/streams/ |
H A D | glob-wrapper.phpt | 11 foreach ( [ __DIR__, "glob://".__DIR__ ] as $spec) { 12 echo "** Opening $spec\n"; 13 $dir = opendir($spec); 15 echo "Failed to open $spec\n"; 19 echo "No files in $spec\n";
|
/PHP-7.0/Zend/ |
H A D | zend_vm_gen.php | 446 function helper_name($name, $spec, $op1, $op2) { argument 585 function($matches) use ($spec, $prefix, $op1, $op2) { 697 if ($spec) { 750 function gen_labels($f, $spec, $kind, $prolog) { argument 754 if ($spec) { 933 function gen_executor_code($f, $spec, $kind, $prolog) { argument 936 if ($spec) { 1214 gen_labels($f, $spec, $kind, $prolog."\t\t"); 1277 gen_executor_code($f, $spec, $kind, $m[1]); 1282 gen_executor_code($f, $spec, $kind, $m[1]); [all …]
|
H A D | zend_API.c | 497 static const char *zend_parse_arg_impl(int arg_num, zval *arg, va_list *va, const char **spec, char… in zend_parse_arg_impl() argument 499 const char *spec_walk = *spec; in zend_parse_arg_impl() 710 *spec = spec_walk; in zend_parse_arg_impl() 741 *spec = spec_walk; in zend_parse_arg_impl() 747 static int zend_parse_arg(int arg_num, zval *arg, va_list *va, const char **spec, int flags) /* {{{… in zend_parse_arg() argument 753 expected_type = zend_parse_arg_impl(arg_num, arg, va, spec, &error, &severity); in zend_parse_arg() 781 ZEND_API int zend_parse_parameter(int flags, int arg_num, zval *arg, const char *spec, ...) in zend_parse_parameter() argument 786 va_start(va, spec); in zend_parse_parameter() 787 ret = zend_parse_arg(arg_num, arg, &va, &spec, flags); in zend_parse_parameter()
|
H A D | zend_API.h | 274 ZEND_API int zend_parse_parameter(int flags, int arg_num, zval *arg, const char *spec, ...); 1020 #define Z_PARAM_VARIADIC_EX(spec, dest, dest_num, post_varargs) do { \ argument 1033 #define Z_PARAM_VARIADIC(spec, dest, dest_num) \ argument 1034 Z_PARAM_VARIADIC_EX(spec, dest, dest_num, 0)
|
/PHP-7.0/ext/mbstring/oniguruma/ |
H A D | HISTORY | 68 2007/08/02: [spec] add backref by number. 77 2007/06/26: [spec] (thanks K.Takata) 232 2006/10/23: [spec] (thanks K.Takata) 310 2006/09/22: [spec] (thanks Allan Odgaard) 344 2006/09/04: [spec] (thanks K.Takata) 1064 2004/05/20: [spec] (thanks Isao Sonobe) 1462 2003/08/18: [spec] (thanks nobu) 1493 2003/07/25: [spec] (thanks akr) 1570 2003/06/18: [spec] add REG_SYN_OP_QUOTE. 1790 2003/02/07: [spec] range in char-class should be same spec. with Ruby [all …]
|
/PHP-7.0/scripts/dev/ |
H A D | check_parameters.php | 218 $spec = $m[1][0]; 219 $len = strlen($spec); 221 $char = $spec[$i]; 222 switch ($char = $spec[$i]) { 283 $allow_uninit = $i+1 < $len && $spec[$i+1] === '!'
|
/PHP-7.0/ext/skeleton/ |
H A D | create_stubs | 52 spec = "l|l|d|d|s|b|b|a|o|r|r|z|" 57 split(spec, spec_array, "\|")
|
/PHP-7.0/ext/mysqli/tests/ |
H A D | mysqli_debug_control_string.phpt | 19 die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
|
H A D | mysqli_debug_append.phpt | 19 die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
|
H A D | mysqli_debug_mysqlnd_control_string.phpt | 19 die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
|
/PHP-7.0/ |
H A D | UPGRADING.INTERNALS | 46 Besides the old way of accepting the strings with 's', the new 'S' ZPP spec 78 The new spec 'S' introduced, which expects an argument of type zend_string *. 79 The 'l' spec expects a parameter of the type zend_long, not long anymore. 80 The 's' spec expects parameters of the type char * and size_t, no int anymore. 87 %pu is sufficient for both zend_ulong and php_size_t. the code using %p spec to output
|
H A D | makerpm | 28 SPEC=php-$VERSION.spec
|
H A D | Makefile.global | 122 rm -f php7.spec main/build-defs.h scripts/phpize
|
H A D | .gitignore | 89 php7.spec
|
H A D | README.PARAMETER_PARSING_API | 33 int zend_parse_parameter(int flags, int arg_num, zval **arg, const char *spec, ...);
|
/PHP-7.0/ext/date/tests/ |
H A D | examine_diff.inc | 27 * This spec includes a "+" or "-" after the "P" in order to
|
/PHP-7.0/ext/standard/tests/strings/ |
H A D | chunk_split_variation12.phpt | 144 spec"To check " in heredoc".I'm sure it'll \work!i@! ch@r$ "To check " in heredoc".I'm sure it'll \…
|
/PHP-7.0/ext/intl/tests/ |
H A D | normalizer_normalize.phpt | 33 /* just make sure all the form constants are defined as in the api spec */
|
/PHP-7.0/ext/pcre/pcrelib/testdata/ |
H A D | testinput14 | 282 # address spec
|
H A D | testinput17 | 200 # address spec
|
H A D | testoutput14 | 349 # address spec
|
H A D | testoutput17 | 216 # address spec
|