Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-7.4/
H A DNEWS1518 . Fixed bug #78579 (mb_decode_numericentity: args number inconsistency).
1782 . Fixed bug #78579 (mb_decode_numericentity: args number inconsistency).
/PHP-7.4/TSRM/
H A DTSRM.c78 #define TSRM_ERROR(args) tsrm_error args argument
96 #define TSRM_ERROR(args) argument
803 va_list args; in tsrm_error() local
807 va_start(args, format); in tsrm_error()
808 size = vfprintf(tsrm_error_file, format, args); in tsrm_error()
809 va_end(args); in tsrm_error()
/PHP-7.4/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 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.phpt7 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 Dbug30791.phpt9 function __call($name, $args) {
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)
/PHP-7.4/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 f(...$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 Dnon_integer_keys.phpt5 function foo(...$args) {
6 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);
/PHP-7.4/Zend/tests/arrow_functions/
H A D006.phpt23 $varargs = fn(?int... $args): array => $args;
H A D007.phpt8 assert((fn&(int... $args): ?bool => $args[0])(false));
14 Warning: assert(): assert(fn&(int ...$args): ?bool => $args[0](false)) failed in %s on line %d

Completed in 36 milliseconds

12345678910>>...23