/PHP-7.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-7.2/main/ |
H A D | php_ticks.c | 27 void *arg; member 50 return e1->func == e2->func && e1->arg == e2->arg; in php_compare_tick_functions() 53 PHPAPI void php_add_tick_function(void (*func)(int, void*), void * arg) in php_add_tick_function() argument 55 struct st_tick_function tmp = {func, arg}; in php_add_tick_function() 59 PHPAPI void php_remove_tick_function(void (*func)(int, void *), void * arg) in php_remove_tick_function() argument 61 struct st_tick_function tmp = {func, arg}; in php_remove_tick_function() 65 static void php_tick_iterator(void *d, void *arg) in php_tick_iterator() argument 68 data->func(*((int *)arg), data->arg); in php_tick_iterator()
|
/PHP-7.2/ext/standard/ |
H A D | pack.c | 105 …result = ((arg & 0xFF) << 24) | ((arg & 0xFF00) << 8) | ((arg >> 8) & 0xFF00) | ((arg >> 24) & 0xF… in php_pack_reverse_int32() 119 tmp.i = arg; in php_pack_reverse_int64() 256 int arg = 1; in PHP_FUNCTION() local 263 arg = -1; in PHP_FUNCTION() 283 arg = 1; in PHP_FUNCTION() 307 arg++; in PHP_FUNCTION() 770 arg = -1; in PHP_FUNCTION() 778 argb = arg; in PHP_FUNCTION() 808 arg = 1; in PHP_FUNCTION() 813 size = (arg > 0) ? (arg + (arg % 2)) / 2 : arg; in PHP_FUNCTION() [all …]
|
H A D | type.c | 28 zval *arg; in PHP_FUNCTION() local 32 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 195 zval *arg; in php_is_type() local 198 Z_PARAM_ZVAL(arg) in php_is_type() 238 zval *arg; in PHP_FUNCTION() local 241 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 244 RETURN_BOOL(Z_TYPE_P(arg) == IS_FALSE || Z_TYPE_P(arg) == IS_TRUE); in PHP_FUNCTION() 297 zval *arg; in PHP_FUNCTION() local 300 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 328 zval *arg; in PHP_FUNCTION() local [all …]
|
H A D | math.c | 983 zval *arg; in PHP_FUNCTION() local 986 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 1000 zval *arg; in PHP_FUNCTION() local 1003 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 1017 zval *arg; in PHP_FUNCTION() local 1020 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 1034 zval *arg; in PHP_FUNCTION() local 1038 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() 1051 zval *arg; in PHP_FUNCTION() local 1055 Z_PARAM_ZVAL(arg) in PHP_FUNCTION() [all …]
|
/PHP-7.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) { 47 Parameter #0 [ <optional> $arg = 1 ] 55 Parameter #0 [ <optional> $arg = NULL ] 63 Parameter #0 [ <optional> $arg = false ] 79 Parameter #0 [ <optional> $arg = 1 ] [all …]
|
/PHP-7.2/ext/phar/phar/ |
H A D | clicommand.inc | 51 $this->args[$arg]['val'] = $this->checkArgTyp($arg, $i, $argc, $argv); 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; 204 $d = dirname($arg); 251 $arg = "-$arg "; [all …]
|
/PHP-7.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 | objects_004.phpt | 9 function foo($arg) {} 13 function foo($arg) {} 17 function foo(&$arg) {} 23 Warning: Declaration of test3::foo(&$arg) should be compatible with test::foo($arg) in %s on line %d
|
H A D | objects_003.phpt | 9 function foo($arg) {} 13 function foo($arg) {} 17 function foo($arg, $arg2) {} 23 Warning: Declaration of test3::foo($arg, $arg2) should be compatible with test::foo($arg) in %s on …
|
H A D | objects_008.phpt | 9 function foo(Test $arg) {} 13 function foo(Test $arg) {} 17 function foo(Test3 $arg) {} 23 Warning: Declaration of test3::foo(Test3 $arg) should be compatible with test::foo(Test $arg) in %s…
|
H A D | objects_006.phpt | 9 function foo($arg, $arg2 = NULL) {} 13 function foo($arg, $arg2 = NULL) {} 17 function foo($arg, $arg2) {} 23 Warning: Declaration of test3::foo($arg, $arg2) should be compatible with test::foo($arg, $arg2 = N…
|
H A D | objects_007.phpt | 9 function foo($arg, &$arg2 = NULL) {} 13 function foo($arg, &$arg2 = NULL) {} 17 function foo($arg, &$arg2) {} 23 Warning: Declaration of test3::foo($arg, &$arg2) should be compatible with test::foo($arg, &$arg2 =…
|
H A D | bug50394.phpt | 14 $arg = 1; 15 $args = array( &$arg ); 18 call_user_func_array( array( $proxy, 'bar' ), array(&$arg) ); 19 var_dump($arg);
|
/PHP-7.2/ext/mbstring/tests/ |
H A D | bug43994.phpt | 42 Without $regs arg: 46 With $regs arg: 54 Without $regs arg: 58 With $regs arg: 66 Without $regs arg: 70 With $regs arg: 82 With $regs arg: 94 With $regs arg: 106 With $regs arg: 118 With $regs arg: [all …]
|
/PHP-7.2/Zend/ |
H A D | zend_API.h | 393 #define array_init(arg) _array_init((arg), 0 ZEND_FILE_LINE_CC) argument 395 #define object_init(arg) _object_init((arg) ZEND_FILE_LINE_CC) argument 396 #define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC) argument 1178 *dest = Z_STR_P(arg); in zend_parse_arg_str() 1234 *dest = arg; in zend_parse_arg_array() 1254 Z_OBJ_P(arg)->properties = zend_array_dup(Z_OBJ_P(arg)->properties); in zend_parse_arg_array_ht() 1256 *dest = Z_OBJ_HT_P(arg)->get_properties(arg); in zend_parse_arg_array_ht() 1269 *dest = arg; in zend_parse_arg_object() 1281 *dest = arg; in zend_parse_arg_resource() 1307 UNEXPECTED(Z_TYPE_P(Z_REFVAL_P(arg)) == IS_NULL)))) ? NULL : arg; in zend_parse_arg_zval() [all …]
|
H A D | zend_API.c | 200 ZVAL_DEREF(arg); in zend_zval_type_name() 495 zval *z = Z_OBJ_HANDLER_P(arg, get)(arg, &rv); in zend_parse_arg_str_weak() 535 ZVAL_DEREF(arg); in zend_parse_arg_impl() 840 zval *arg; in zend_parse_va_args() local 1710 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_long_ex() 1724 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_bool_ex() 1738 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_null_ex() 1752 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_resource_ex() 1766 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_double_ex() 1780 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_str_ex() [all …]
|
/PHP-7.2/ext/mbstring/oniguruma/src/ |
H A D | regtrav.c | 37 int level, void* arg) in capture_tree_traverse() argument 46 level, ONIG_TRAVERSE_CALLBACK_AT_FIRST, arg); in capture_tree_traverse() 52 callback_func, level + 1, arg); in capture_tree_traverse() 58 level, ONIG_TRAVERSE_CALLBACK_AT_LAST, arg); in capture_tree_traverse() 68 int(*callback_func)(int,int,int,int,int,void*), void* arg) in onig_capture_tree_traverse() argument 72 callback_func, 0, arg); in onig_capture_tree_traverse()
|
/PHP-7.2/sapi/fpm/fpm/ |
H A D | fpm_cleanup.c | 14 void *arg; member 19 int fpm_cleanup_add(int type, void (*cleanup)(int, void *), void *arg) /* {{{ */ in fpm_cleanup_add() argument 31 c->arg = arg; in fpm_cleanup_add() 44 c->cleanup(type, c->arg); in fpm_cleanups_run()
|
/PHP-7.2/ext/ |
H A D | ext_skel_win32.php | 29 foreach($argv as $arg) { 30 if (strtolower(substr($arg, 0, 9)) == "--extname") { 31 $extname = substr($arg, 10); 33 if (strtolower(substr($arg, 0, 6)) == "--skel") { 34 $skel = substr($arg, 7);
|
/PHP-7.2/ext/date/tests/ |
H A D | microtime_error.phpt | 26 echo "\n--> bad arg: "; 41 --> bad arg: NULL 44 --> bad arg: float(1.5) 47 --> bad arg: string(5) "hello" 50 --> bad arg: array(2) { 63 --> bad arg: object(stdClass)#%d (0) { 69 --> bad arg: int(1)
|
/PHP-7.2/ |
H A D | ltmain.sh | 258 arg="\"$arg\"" 279 arg="\"$arg\"" 722 arg="\"$arg\"" 1687 arg="\"$arg\"" 1804 arg="$arg $wl$flag" 1822 arg="$arg $wl$flag" 1852 arg="\"$arg\"" 1991 arg="\"$arg\"" 5818 arg="\"$arg\"" 5834 arg="\"$arg\"" [all …]
|
/PHP-7.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-7.2/ext/mysqli/ |
H A D | mysqli_exception.c | 42 va_list arg; in php_mysqli_throw_sql_exception() local 45 va_start(arg, format); in php_mysqli_throw_sql_exception() 46 vspprintf(&message, 0, format, arg); in php_mysqli_throw_sql_exception() 47 va_end(arg); in php_mysqli_throw_sql_exception()
|