Home
last modified time | relevance | path

Searched refs:throw (Results 1 – 25 of 493) sorted by relevance

12345678910>>...20

/PHP-8.0/Zend/tests/throw/
H A D001.phpt2 throw expression
7 $result = true && throw new Exception("true && throw");
14 $result = false && throw new Exception("false && throw");
21 $result = true and throw new Exception("true and throw");
28 $result = false and throw new Exception("false and throw");
35 $result = true || throw new Exception("true || throw");
42 $result = false || throw new Exception("false || throw");
49 $result = true or throw new Exception("true or throw");
56 $result = false or throw new Exception("false or throw");
63 $result = null ?? throw new Exception("null ?? throw");
[all …]
H A D002.phpt2 Test throw with various expressions
12 throw $this->createNotFoundException();
20 throw static::staticCreateNotFoundException();
37 throw true ? new Exception('Ternary true 1') : new Exception('Ternary true 2');
43 throw false ? new Exception('Ternary false 1') : new Exception('Ternary false 2');
51 throw $exception1 ?? $exception2;
59 throw $exception1 ?? $exception2;
65 throw $exception = new Exception('Assignment');
72 throw $exception ??= new Exception('Coalesce assignment null');
79 throw $exception ??= new Exception('Coalesce assignment non-null 2');
[all …]
H A Dleaks.phpt2 throw expression should not leak temporaries
7 new stdClass(throw new Exception);
14 ($a + [1]) + throw new Exception;
20 @throw new Exception;
/PHP-8.0/Zend/tests/generators/
H A Dthrow_rethrow.phpt2 Generator::throw() where the generator throws a different exception
13 throw new LogicException('new throw');
18 var_dump($gen->throw(new RuntimeException('throw')));
23 Caught: RuntimeException: throw in %s:%d
28 Fatal error: Uncaught LogicException: new throw in %s:%d
31 #1 %s(%d): Generator->throw(Object(RuntimeException))
H A Dget_return_errors.phpt21 throw new Exception("gen2() throw");
40 throw new Exception("gen3() throw");
60 $gen->throw(new Exception("gen4() throw"));
66 // that was injected using throw()
75 gen2() throw
77 gen3() throw
78 gen4() throw
H A Dget_return_and_finally.phpt8 throw new Exception("gen1() throw");
23 throw new Exception("gen2() throw");
30 // This will throw an exception (from the finally)
46 gen2() throw
H A Dthrow_not_an_exception.phpt2 Generator::throw() with something that's not an exception
11 $gen->throw(new stdClass);
15 Fatal error: Uncaught TypeError: Generator::throw(): Argument #1 ($exception) must be of type Throw…
17 #0 %s(%d): Generator->throw(Object(stdClass))
/PHP-8.0/Zend/tests/
H A Dexception_001.phpt10 throw new Exception(NULL);
13 throw $e;
17 throw $e;
21 throw $e;
25 throw $e;
H A Dtemporary_cleaning_013.phpt9 function __destruct() { throw new Exception; }
15 function __destruct() { throw new Exception; }
22 function __destruct() { throw new Exception; }
29 function __destruct() { throw new Exception; }
39 function __destruct() { throw new Exception; }
49 function __destruct() { throw new Exception; }
61 function __destruct() { throw new Exception; }
74 function __destruct() { throw new Exception; }
81 function __destruct() { throw new Exception; }
89 function __destruct() { throw new Exception; }
[all …]
H A Dbug65784.phpt7 throw new Exception("not catch");
11 throw new Exception("caught");
28 throw new Exception("caught");
32 throw new Exception("caught");
45 throw new Exception("not caught");
49 throw new NotExists();
H A Dbug33318.phpt2 Bug #33318 (throw 1; results in Invalid opcode 108/1/8)
5 throw 1;
8 Fatal error: Uncaught Error: Can only throw objects in %sbug33318.php:2
H A Dexception_006.phpt2 Trying to throw a non-object
6 throw 1;
10 Fatal error: Uncaught Error: Can only throw objects in %s:%d
H A Dexception_set_previous_leak.phpt8 throw new Exception("Test");
10 throw $e;
12 throw $e;
H A Dbug70944.phpt8 throw new Exception("Bar", 0, $e);
10 throw $e;
19 throw new Exception("Bar", 0, $e);
21 throw new Exception("Dummy", 0, $e);
H A DErrorException_getSeverity.phpt16 throw new ErrorException();
28 throw new ErrorException(EXCEPTION_PARAM_MSG);
40 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR);
52 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_ERROR);
64 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_WARNING);
76 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_PARSE);
88 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_NOTICE);
100 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR);
160 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_USER_ERROR);
196 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_STRICT);
[all …]
/PHP-8.0/Zend/tests/try/
H A Dtry_finally_002.phpt2 Try finally (re-throw exception in finally block)
7 throw new Exception("try");
9 throw new Exception("finally");
H A Dcatch_finally_001.phpt5 function foo ($throw = FALSE) {
8 if ($throw) {
9 throw new Exception("ex");
H A Dcatch_novar_1.phpt7 throw new Exception();
13 throw new Exception();
21 throw new Exception();
H A Dcatch_finally_006.phpt2 Try catch finally (re-throw exception in catch block)
7 throw new Exception("ex");
10 throw $e;
H A Dtry_finally_026.phpt8 throw new Exception(1);
11 throw new Exception(2);
15 throw new Exception(3);
H A Dtry_finally_027.phpt2 Return in try with throw in finally, inside other finally
8 throw new Exception(1);
13 throw new Exception(2);
H A Dtry_finally_024.phpt8 throw new Exception(1);
13 throw new Exception(2);
18 throw new Exception(3);
/PHP-8.0/tests/classes/
H A Diterators_007.phpt10 …public function rewind() { if ($this->x == 0) throw new Exception(__METHOD__); reset($this->arr…
11 …public function current() { if ($this->x == 1) throw new Exception(__METHOD__); return current($…
12 …public function key() { if ($this->x == 2) throw new Exception(__METHOD__); return key($this…
13 …public function next() { if ($this->x == 3) throw new Exception(__METHOD__); next($this->arr)…
14 …public function valid() { if ($this->x == 4) throw new Exception(__METHOD__); return (key($thi…
H A Darray_access_013.phpt8 … public function offsetExists($offset) { throw new Exception(__METHOD__); return false; }
9 … public function offsetGet($offset) { throw new Exception(__METHOD__); return $offset; }
10 public function offsetSet($offset, $data ) { throw new Exception(__METHOD__); }
11 public function offsetUnset($offset) { throw new Exception(__METHOD__); }
/PHP-8.0/Zend/tests/arg_unpack/
H A Dtraversable_throwing_exception.phpt2 Traversables that throw exceptions are properly handled during argument unpack
12 throw new Exception('getIterator');
19 throw new Exception('gen');

Completed in 43 milliseconds

12345678910>>...20