/PHP-8.2/ext/standard/tests/general_functions/ |
H A D | call_user_func_array_variation_001.phpt | 6 function by_val($arg) { 7 $arg = 'changed'; 10 function by_ref(&$arg) { 11 $arg = 'changed'; 15 $arg = array('original'); 17 var_dump($arg); 22 var_dump($arg); 26 $ref = &$arg[0]; 28 var_dump($arg); 32 $ref = &$arg[0]; [all …]
|
H A D | getopt_005.phpt | 4 --arg value --arg=value -avalue -a=value -a value 10 var_dump(getopt("a:", array("arg:"))); 14 ["arg"]=>
|
/PHP-8.2/main/ |
H A D | php_ticks.c | 23 void *arg; member 46 return e1->func == e2->func && e1->arg == e2->arg; in php_compare_tick_functions() 49 PHPAPI void php_add_tick_function(void (*func)(int, void*), void * arg) in php_add_tick_function() argument 51 struct st_tick_function tmp = {func, arg}; in php_add_tick_function() 55 PHPAPI void php_remove_tick_function(void (*func)(int, void *), void * arg) in php_remove_tick_function() argument 57 struct st_tick_function tmp = {func, arg}; in php_remove_tick_function() 61 static void php_tick_iterator(void *d, void *arg) in php_tick_iterator() argument 64 data->func(*((int *)arg), data->arg); in php_tick_iterator()
|
H A D | php_ini_builder.c | 63 PHPAPI void php_ini_builder_define(struct php_ini_builder *b, const char *arg) in php_ini_builder_define() argument 65 const size_t len = strlen(arg); in php_ini_builder_define() 66 const char *val = strchr(arg, '='); in php_ini_builder_define() 71 php_ini_builder_quoted(b, arg, val - arg - 1, val, arg + len - val); in php_ini_builder_define() 74 memcpy(b->value + b->length, arg, len); in php_ini_builder_define() 79 php_ini_builder_unquoted(b, arg, len, "1", 1); in php_ini_builder_define()
|
/PHP-8.2/ext/reflection/tests/ |
H A D | bug33389.phpt | 7 function foo1($arg=foobar) { 9 function foo2($arg=null) { 11 function foo3($arg=false) { 13 function foo4($arg='foo') { 15 function foo5($arg=1) { 17 function bar($arg) { 45 Parameter #0 [ <optional> $arg = foobar ] 53 Parameter #0 [ <optional> $arg = NULL ] 61 Parameter #0 [ <optional> $arg = false ] 77 Parameter #0 [ <optional> $arg = 1 ] [all …]
|
/PHP-8.2/ext/phar/phar/ |
H A D | clicommand.inc | 148 return (bool)$arg; 153 if ((int)$arg != $arg) { 157 return (int)$arg; 162 if (strlen($arg)) { 163 … if (strlen($arg) > 1 && $arg[0] == $arg[strlen($arg)-1] && strpos('/,', $arg) !== false) { 164 return $arg; 178 return $arg; 183 $f = realpath($arg); 204 $d = dirname($arg); 251 $arg = "-$arg "; [all …]
|
/PHP-8.2/Zend/tests/named_params/ |
H A D | undef_var.phpt | 2 Passing undefined variable to named arg 6 function func1($arg) { var_dump($arg); } 7 func1(arg: $undef); 8 func2(arg: $undef); 9 function func2($arg) { var_dump($arg); }
|
/PHP-8.2/Zend/tests/ |
H A D | bug70332.phpt | 5 function & test($arg) { 6 return $arg; 9 $arg = new Stdclass(); 10 $arg->name = array(); 12 test($arg)->name[1] = "xxxx"; 14 print_r($arg);
|
H A D | bug76047.phpt | 15 function test($arg) { 16 $arg = str_shuffle(str_repeat('A', 79)); 18 $vuln->a = $arg; 21 function test2($arg) { 22 $$arg = 1; // Trigger symbol table 23 $arg = str_shuffle(str_repeat('A', 79)); 25 $vuln->a = $arg;
|
H A D | objects_004.phpt | 9 function foo($arg) {} 13 function foo($arg) {} 17 function foo(&$arg) {} 22 Fatal error: Declaration of test3::foo(&$arg) must be compatible with test::foo($arg) in %s on line…
|
H A D | objects_008.phpt | 7 function foo(Test $arg) {} 11 function foo(Test $arg) {} 15 function foo(Test3 $arg) {} 20 Fatal error: Declaration of test3::foo(Test3 $arg) must be compatible with test::foo(Test $arg) in …
|
H A D | objects_003.phpt | 9 function foo($arg) {} 13 function foo($arg) {} 17 function foo($arg, $arg2) {} 22 Fatal error: Declaration of test3::foo($arg, $arg2) must be compatible with test::foo($arg) in %s o…
|
H A D | objects_006.phpt | 9 function foo($arg, $arg2 = NULL) {} 13 function foo($arg, $arg2 = NULL) {} 17 function foo($arg, $arg2) {} 22 Fatal error: Declaration of test3::foo($arg, $arg2) must be compatible with test::foo($arg, $arg2 =…
|
H A D | objects_007.phpt | 9 function foo($arg, &$arg2 = NULL) {} 13 function foo($arg, &$arg2 = NULL) {} 17 function foo($arg, &$arg2) {} 22 Fatal error: Declaration of test3::foo($arg, &$arg2) must be compatible with test::foo($arg, &$arg2…
|
H A D | trait_type_errors.phpt | 7 public function test1($arg): int { 8 return $arg; 10 public function test2(int $arg) { 12 public function test3(int $arg = 42) { 42 C::test2(): Argument #1 ($arg) must be of type int, string given, called in %s on line %d 43 C::test3(): Argument #1 ($arg) must be of type int, string given, called in %s on line %d
|
H A D | bug48770.phpt | 7 public function func($arg) { 13 public function func($arg) { 17 public function callFuncInParent($arg) { 18 call_user_func_array(array($this, 'parent::func'), array($arg)); 23 public function func($arg) {
|
/PHP-8.2/ext/standard/ |
H A D | type.c | 23 zval *arg; in PHP_FUNCTION() local 27 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 42 zval *arg; in PHP_FUNCTION() local 46 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 242 zval *arg; in php_is_type() local 245 Z_PARAM_ZVAL(arg) in php_is_type() 282 zval *arg; in PHP_FUNCTION() local 285 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 288 RETURN_BOOL(Z_TYPE_P(arg) == IS_FALSE || Z_TYPE_P(arg) == IS_TRUE); in PHP_FUNCTION() 348 zval *arg; in PHP_FUNCTION() local [all …]
|
H A D | pack.c | 107 return ((arg & 0xFF) << 8) | ((arg >> 8) & 0xFF); in php_pack_reverse_int16() 114 …result = ((arg & 0xFF) << 24) | ((arg & 0xFF00) << 8) | ((arg >> 8) & 0xFF00) | ((arg >> 24) & 0xF… in php_pack_reverse_int32() 127 tmp.i = arg; in php_pack_reverse_int64() 259 int arg = 1; in PHP_FUNCTION() local 266 arg = -1; in PHP_FUNCTION() 284 if (arg < 0) { in PHP_FUNCTION() 286 arg = 1; in PHP_FUNCTION() 303 if (arg < 0) { in PHP_FUNCTION() 315 arg++; in PHP_FUNCTION() 391 INC_OUTPUTPOS((arg + (arg % 2)) / 2,1) /* 4 bit per arg */ in PHP_FUNCTION() [all …]
|
/PHP-8.2/Zend/ |
H A D | zend_API.h | 524 #define array_init(arg) ZVAL_ARR((arg), zend_new_array(0)) argument 525 #define array_init_size(arg, size) ZVAL_ARR((arg), zend_new_array(size)) argument 2102 if (EXPECTED(Z_TYPE_P(arg) == IS_LONG || Z_TYPE_P(arg) == IS_DOUBLE)) { in zend_parse_arg_number() 2103 *dest = arg; in zend_parse_arg_number() 2115 *dest = Z_STR_P(arg); in zend_parse_arg_str() 2170 *dest = arg; in zend_parse_arg_iterable() 2186 *dest = arg; in zend_parse_arg_array() 2245 *dest = arg; in zend_parse_arg_object() 2293 *dest = arg; in zend_parse_arg_resource() 2323 UNEXPECTED(Z_TYPE_P(Z_REFVAL_P(arg)) == IS_NULL)))) ? NULL : arg; in zend_parse_arg_zval() [all …]
|
/PHP-8.2/sapi/fpm/fpm/ |
H A D | fpm_cleanup.c | 13 void *arg; member 18 int fpm_cleanup_add(int type, void (*cleanup)(int, void *), void *arg) /* {{{ */ in fpm_cleanup_add() argument 30 c->arg = arg; in fpm_cleanup_add() 43 c->cleanup(type, c->arg); in fpm_cleanups_run()
|
/PHP-8.2/ext/mbstring/tests/ |
H A D | bug43994.phpt | 25 echo "Without \$regs arg:\n"; 32 echo "With \$regs arg:\n"; 45 Without $regs arg: 47 With $regs arg: 52 Without $regs arg: 54 With $regs arg: 59 Without $regs arg: 61 With $regs arg: 66 Without $regs arg: 68 With $regs arg:
|
H A D | mb_ereg_variation5.phpt | 24 echo "\nASCII String without \$regs arg:\t\t"; 26 echo "ASCII String with \$regs arg:\n"; 30 echo "\nMultibyte String without \$regs arg:\t"; 32 echo "Multubyte String with \$regs arg:\n"; 63 ASCII String without $regs arg: bool(true) 64 ASCII String with $regs arg: 71 Multibyte String without $regs arg: bool(true) 72 Multubyte String with $regs arg:
|
/PHP-8.2/ext/gmp/tests/ |
H A D | bug80560.phpt | 129 echo $function, ' arg 1 failed with 0B', \PHP_EOL; 133 echo $function, ' arg 1 failed with 0b', \PHP_EOL; 137 echo $function, ' arg 1 failed with 0X', \PHP_EOL; 141 echo $function, ' arg 1 failed with 0x', \PHP_EOL; 145 echo $function, ' arg 2 failed with 0B', \PHP_EOL; 149 echo $function, ' arg 2 failed with 0b', \PHP_EOL; 153 echo $function, ' arg 2 failed with 0X', \PHP_EOL; 157 echo $function, ' arg 2 failed with 0x', \PHP_EOL; 163 echo $function, ' arg 1 failed with 0B', \PHP_EOL; 167 echo $function, ' arg 1 failed with 0b', \PHP_EOL; [all …]
|
/PHP-8.2/ext/spl/tests/ |
H A D | spl_004.phpt | 12 function test_arg($arg) 14 if ($arg instanceof Iterator) 16 var_dump($arg->key()); 17 var_dump($arg->current()); 21 var_dump($arg); 28 static $arg = 0; 29 var_dump($arg++);
|
/PHP-8.2/Zend/tests/type_declarations/union_types/ |
H A D | inheritance.phpt | 8 public function method(A|B|int $arg): A|B|int { } 11 private function method2(A|B|int $arg): A|B|int { } 19 public function method(A|B|int $arg): A|B|int { } 22 private function method2(A|B|int $arg): A|B|int { } 37 public function method(A|B|int $arg): A|B|int { } 40 private function method2(A|B|int $arg): A|B|int { }
|