Home
last modified time | relevance | path

Searched refs:arg (Results 1 – 25 of 466) sorted by relevance

12345678910>>...19

/PHP-8.3/ext/standard/tests/general_functions/
H A Dcall_user_func_array_variation_001.phpt6 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 Dgetopt_005.phpt4 --arg value --arg=value -avalue -a=value -a value
10 var_dump(getopt("a:", array("arg:")));
14 ["arg"]=>
/PHP-8.3/main/
H A Dphp_ticks.c23 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 Dphp_ini_builder.c63 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.3/ext/reflection/tests/
H A Dbug33389.phpt7 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.3/ext/phar/phar/
H A Dclicommand.inc148 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.3/Zend/tests/named_params/
H A Dundef_var.phpt2 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.3/Zend/tests/
H A Dbug70332.phpt5 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 Dbug76047.phpt15 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 Dobjects_004.phpt9 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 Dobjects_003.phpt9 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 Dobjects_008.phpt7 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 Dobjects_006.phpt9 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 Dobjects_007.phpt9 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 Dtrait_type_errors.phpt7 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 Dbug48770.phpt7 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.3/ext/standard/
H A Dtype.c23 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 Dpack.c107 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.3/Zend/
H A Dzend_API.h531 #define array_init(arg) ZVAL_ARR((arg), zend_new_array(0)) argument
532 #define array_init_size(arg, size) ZVAL_ARR((arg), zend_new_array(size)) argument
2219 if (EXPECTED(Z_TYPE_P(arg) == IS_LONG || Z_TYPE_P(arg) == IS_DOUBLE)) { in zend_parse_arg_number()
2220 *dest = arg; in zend_parse_arg_number()
2231 …if (EXPECTED(Z_TYPE_P(arg) == IS_LONG || Z_TYPE_P(arg) == IS_DOUBLE || Z_TYPE_P(arg) == IS_STRING)… in zend_parse_arg_number_or_str()
2232 *dest = arg; in zend_parse_arg_number_or_str()
2299 *dest = arg; in zend_parse_arg_iterable()
2315 *dest = arg; in zend_parse_arg_array()
2374 *dest = arg; in zend_parse_arg_object()
2422 *dest = arg; in zend_parse_arg_resource()
[all …]
H A Dzend_API.c148 ZVAL_DEREF(arg); in zend_zval_value_name()
167 ZVAL_DEREF(arg); in zend_zval_type_name()
673 *dest = arg; in zend_parse_arg_number_slow()
697 *dest = arg; in zend_parse_arg_number_or_str_slow()
704 *dest = arg; in zend_parse_arg_number_or_str_slow()
768 ZVAL_DEREF(arg); in zend_parse_arg_impl()
772 real_arg = arg; in zend_parse_arg_impl()
1098 zval *arg; in zend_parse_va_args() local
1758 ZVAL_NULL(arg); in _object_and_properties_init()
1765 ZVAL_NULL(arg); in _object_and_properties_init()
[all …]
/PHP-8.3/sapi/fpm/fpm/
H A Dfpm_cleanup.c13 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.3/ext/mbstring/tests/
H A Dbug43994.phpt25 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 Dmb_ereg_variation5.phpt24 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.3/ext/gmp/tests/
H A Dbug80560.phpt129 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.3/ext/spl/tests/
H A Dspl_004.phpt12 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++);

Completed in 102 milliseconds

12345678910>>...19