Home
last modified time | relevance | path

Searched refs:arg (Results 1 – 25 of 421) sorted by path

12345678910>>...17

/PHP-7.4/
H A D.gdbinit88 set $arg = 0
89 while $arg < $count
90 if $arg > 0
94 set $zvalue = (zval *) $ex + $callFrameSize + $arg
129 set $arg = $arg + 1
H A DCONTRIBUTING.md391 'arg' variable no longer is available.
/PHP-7.4/Zend/tests/
H A D019.phpt73 // isset() with two args, one arg only unset, expected: bool(false)
H A Dassign_coalesce_001.phpt13 function id($arg) {
14 echo "id($arg)\n";
15 return $arg;
H A Dassign_coalesce_002.phpt11 function id($arg) {
12 echo "id($arg)\n";
13 return $arg;
H A Dassign_coalesce_003.phpt6 function id($arg) {
7 echo "id($arg)\n";
8 return $arg;
H A Dbug29368_1.phpt5 function throwme($arg)
H A Dbug31683.phpt20 function __call($test, $arg) {
H A Dbug47771.phpt2 Bug #47771 (Exception during object construction from arg call calls object's destructor)
H A Dbug50394.phpt14 $arg = 1;
15 $args = array( &$arg );
18 call_user_func_array( array( $proxy, 'bar' ), array(&$arg) );
19 var_dump($arg);
H A Dbug60611.phpt6 function __call($name, $arg) {
8 static function __callStatic($name, $arg) {
H A Dbug60613.phpt6 function __call($name, $arg) {
H A Dbug61362.phpt5 function test($arg){
H A Dbug62956.phpt13 private function test($arg)
H A Dbug64515.phpt5 function foo($unused = null, $unused = null, $arg = array()) {
H A Dbug69212.phpt2 Bug #69212: Leaking VIA_HANDLER func when exception thrown in __call/... arg passing
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 Dbug74164.phpt2 Bug #74164 (PHP hangs when an invalid value is dynamically passed to typehinted by-ref 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 Dcall_user_func_array_prefer_ref.phpt2 call_user_func_array() passes value to prefer-ref arg if element wasn't a reference
H A Dclosure_041.phpt2 Closure 041: Rebinding: preservation of previous scope when not given as arg unless impossible
/PHP-7.4/Zend/tests/arg_unpack/
H A Dby_ref.phpt9 foreach ($args as &$arg) {
10 $arg++;
H A Dby_ref_separation.phpt7 foreach ($args as &$arg) {
8 $arg++;
/PHP-7.4/Zend/tests/bug67436/
H A Da.inc4 public function test($arg = c::TESTCONSTANT) {
5 echo __METHOD__ . "($arg)\n";
H A Dbug67436_nohandler.phpt17 Warning: Declaration of b::test() should be compatible with a::test($arg = c::TESTCONSTANT) in %s%e…

Completed in 33 milliseconds

12345678910>>...17