Home
last modified time | relevance | path

Searched refs:args (Results 1 – 25 of 619) sorted by path

12345678910>>...25

/PHP-7.0/TSRM/
H A DTSRM.c69 #define TSRM_ERROR(args) tsrm_error args argument
87 #define TSRM_ERROR(args) argument
764 va_list args; in tsrm_error() local
768 va_start(args, format); in tsrm_error()
769 size = vfprintf(tsrm_error_file, format, args); in tsrm_error()
770 va_end(args); in tsrm_error()
/PHP-7.0/Zend/tests/
H A D019.phpt73 // isset() with two args, one arg only unset, expected: bool(false)
76 // isset() with two args, both args already unset, expected: bool(false);
127 // calling isset with more args
169 // call isset() with two args, both set
180 // call isset() with two args, but one set
184 // now the isset() with both the args as unset
H A D030.phpt59 ["args"]=>
H A Daccess_modifiers_011.phpt22 public function __call($func, array $args = array())
24 return call_user_func_array(array($this, $func), $args);
H A Daccess_modifiers_012.phpt8 public function __call($name, $args) {
H A Dbug19859.phpt9 function __call($method,$args)
H A Dbug28377.phpt2 Bug #28377 (debug_backtrace is intermittently passing args)
14 echo $traceName ." -- args: ";
15 echo isset($btInfo[0]['args']) ? count($btInfo[0]['args']) : 'does not exist';
22 dereferenced -- args: 2
23 direct -- args: 2
H A Dbug32429.phpt15 public function __call($name, $args) {
H A Dbug38220.phpt25 function __call($method, $args) {
32 call_user_func_array(array($drv, $method), $args);
H A Dbug46246.phpt12 public function call($method, $args = array())
H A Dbug47801.phpt8 function __call($name, $args)
H A Dbug47880.phpt8 $backtrace[1]['args'][1] = 'bomb';
H A Dbug50383.phpt7 public static function __callStatic($method, $args) {
10 public function __call($method, $args) {
49 [args] => Array
65 [args] => Array
82 [args] => Array
98 [args] => Array
H A Dbug50394.phpt8 function __call( $name, $args ) {
10 call_user_func_array( 'inc', $args );
15 $args = array( &$arg );
17 call_user_func_array( array( $proxy, 'bar' ), $args );
H A Dbug52939.phpt10 $args = array(&$ar1);
11 var_dump(call_user_func_array("array_multisort", $args));
15 $args = array($ar1);
16 var_dump(call_user_func_array("array_multisort", $args));
/PHP-7.0/Zend/tests/arg_unpack/
H A Dbasic.phpt6 function test(...$args) {
7 var_dump($args);
H A Dby_ref.phpt8 function test1(&...$args) {
9 foreach ($args as &$arg) {
H A Dby_ref_separation.phpt6 function inc(&... $args) {
7 foreach ($args as &$arg) {
H A Ddynamic.phpt6 $fn = function(...$args) {
7 var_dump($args);
H A Dinvalid_type.phpt6 function test(...$args) {
7 var_dump($args);
H A Dmany_args.phpt6 function fn(...$args) {
7 var_dump(count($args));
H A Dmethod.phpt7 public function test(...$args) {
8 var_dump($args);
11 public static function test2(...$args) {
12 var_dump($args);
H A Dnew.phpt7 public function __construct(...$args) {
8 var_dump($args);
H A Dstring_keys.phpt2 Argument unpacking does not work with string keys (forward compatibility for named args)
H A Dtraversable_throwing_exception.phpt6 function test(...$args) {
7 var_dump($args);

Completed in 26 milliseconds

12345678910>>...25