Home
last modified time | relevance | path

Searched refs:return (Results 201 – 225 of 3006) sorted by relevance

12345678910>>...121

/PHP-8.2/Zend/tests/
H A Daccess_modifiers_011.phpt12 return "in func1";
16 return "in func2";
20 return $this->$var;
24 return call_user_func_array(array($this, $func), $args);
H A Dlsb_002.phpt11 return 'TestClassFunction';
15 return static::$staticVar;
19 return static::CLASS_CONST;
23 return static::staticFunction();
32 return 'ChildClassFunction';
H A Dincrement_function_return_error.phpt2 It's not possible to increment the return value of a function
7 return 42;
14 Fatal error: Can't use function return value in write context in %s on line %d
H A Ddereference_003.phpt13 return $x;
16 return array(1.2, array(new self));
22 return $a;
25 return $this->b();
H A Dbug69568.phpt8 return 1;
11 return function() {
12 return self::testprivate();
H A Derrmsg_004.phpt2 errmsg: can't use function return value in write context
7 return "blah";
15 Fatal error: Can't use function return value in write context in %s on line %d
H A Dbug69180-backtrace.phpt11 return '=' . $name;
22 return $this->__t_get($name);
31 return parent::__get($name);
38 return parent::__get($name);
43 return $this->__x_get($name);
50 return parent::__get($name);
55 return $this->__t_get($name);
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_zerofill.phpt20 return true;
26 return false;
32 return false;
39 return false;
45 return false;
60 return false;
65 return false;
69 return true;
/PHP-8.2/Zend/tests/generators/
H A Dgenerator_return_return_type.phpt2 Generators must return a valid variable with return type specified
8 return true;
/PHP-8.2/Zend/tests/grammar/
H A Dregression_005.phpt8 const return = 'yep';
11 const return = 'nope';
14 Parse error: syntax error, unexpected token "return", expecting identifier in %s on line %d
/PHP-8.2/tests/lang/
H A DforeachLoopIteratorAggregate.002.phpt2 IteratorAggregate::getIterator bad return type
9 return null;
16 return new stdClass;
23 return 1;
30 return array(1,2,3);
/PHP-8.2/ext/standard/tests/serialize/
H A D__serialize_002.phpt2 __serialize() mechanism (002): TypeError on invalid return type
8 return $this;
20 Test::__serialize() must return an array
/PHP-8.2/Zend/tests/try/
H A Dcatch_finally_005.phpt11 return 2;
13 return 3;
15 return 1;
/PHP-8.2/ext/standard/tests/streams/
H A Dbug60817.phpt9 return true;
14 return "a\nbb\ncc";
16 return "";
19 return $this->s >= 2;
/PHP-8.2/ext/opcache/tests/jit/
H A Dgh12512.phpt15 return $ret;
19 if ($b) return true;
28 return false;
30 return true;
/PHP-8.2/ext/standard/tests/file/
H A Duserstreams_006.phpt8 return true;
11 return false;
15 return strlen($data);
19 return false;
/PHP-8.2/ext/session/tests/
H A Dsession_set_save_handler_class_017.phpt25 return true;
29 return true;
33 return (string)@file_get_contents($this->path . $id);
37 return (bool)file_put_contents($this->path . $id, $data);
50 return true;
54 return pathinfo(__FILE__)['filename'];
H A Dsession_set_save_handler_iface_003.phpt25 return true;
29 return true;
33 return (string)@file_get_contents($this->path . $id);
38 return (bool)file_put_contents($this->path . $id, $data);
52 return true;
56 return pathinfo(__FILE__)['filename'];
H A Dsession_set_save_handler_sid_001.phpt25 return true;
29 return true;
33 return (string)@file_get_contents($this->path . $id);
38 return (bool)file_put_contents($this->path . $id, $data);
51 return true;
55 return pathinfo(__FILE__)['filename'];
/PHP-8.2/Zend/tests/type_declarations/mixed/validation/
H A Dmixed_return_weak_success.phpt2 Test that the mixed return type is compatible with any kind of return value in weak mode
8 return $a;
/PHP-8.2/Zend/tests/return_types/
H A Dinheritance005.phpt2 Internal covariant return type of self
7 return new Foo;
13 return new Bar;
/PHP-8.2/tests/output/
H A Dob_implicit_flush_basic_001.phpt2 Test ob_implicit_flush() function : check return value (always null).
5 echo "*** Testing ob_implicit_flush() : check return value ***\n";
14 *** Testing ob_implicit_flush() : check return value ***
/PHP-8.2/ext/opcache/tests/
H A Dpreload_bug78175_2.inc7 return self::$loader;
9 return self::$loader = new Loader();
14 return $counter++;
/PHP-8.2/Zend/tests/nullsafe_operator/
H A D028.phpt2 Test nullsafe in sub-chain of return as ref
8 return $foo;
13 return returns_ref($null?->null);
/PHP-8.2/tests/classes/
H A Diterators_002.phpt21 return $more;
25 return $this->num;
34 case 0: return "1st";
35 case 1: return "2nd";
36 case 2: return "3rd";
37 default: return "???";
51 return new c_iter($this);

Completed in 29 milliseconds

12345678910>>...121