Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 120) sorted by path

12345

/PHP-7.4/
H A D.gdbinit62 set $ex = $arg0
63 while $ex
64 printf "[%p] ", $ex
65 set $func = $ex->func
67 if $ex->This->value.obj
71 printf "%s->", $ex->This->value.obj->ce.name->val
87 set $count = $ex->This.u2.num_args
94 set $zvalue = (zval *) $ex + $callFrameSize + $arg
138 printf "%s:%d ", $func->op_array.filename->val, $ex->opline->lineno
143 set $ex = $ex->prev_execute_data
/PHP-7.4/Zend/tests/arg_unpack/
H A Dnon_integer_keys.phpt15 } catch (Error $ex) {
16 echo "Exception: " . $ex->getMessage() . "\n";
H A Dstring_keys.phpt12 } catch (Error $ex) {
13 var_dump($ex->getMessage());
17 } catch (Error $ex) {
18 var_dump($ex->getMessage());
/PHP-7.4/Zend/tests/array_unpack/
H A Dclasses.phpt22 } catch (Error $ex) {
23 echo "Exception: " . $ex->getMessage() . "\n";
H A Dnon_integer_keys.phpt12 } catch (Error $ex) {
13 echo "Exception: " . $ex->getMessage() . "\n";
H A Dstring_keys.phpt9 } catch (Error $ex) {
10 var_dump($ex->getMessage());
15 } catch (Error $ex) {
16 var_dump($ex->getMessage());
/PHP-7.4/Zend/tests/assert/
H A Dexpect_003.phpt10 } catch (AssertionError $ex) {
11 var_dump($ex->getMessage());
H A Dexpect_004.phpt10 } catch (AssertionError $ex) {
11 var_dump($ex->getMessage());
H A Dexpect_005.phpt11 } catch (AssertionError $ex) {
12 var_dump($ex->getMessage());
/PHP-7.4/Zend/tests/
H A Dbug40815.phpt7 static public function exh ($ex) {
H A Dbug44184.phpt16 } catch (Exception $ex) {
H A Dbug52361.phpt9 } catch(Exception $ex) {
10 echo "1. $ex\n";
21 } catch(Exception $ex) {
22 echo "2. $ex\n";
H A Dclosure_031.phpt13 } catch (Error $ex) {
14 echo "Error: {$ex->getMessage()}\n";
H A Dexception_getters_with_ref_props.phpt19 $ex = new MyException($refMsg, $refCode, $refFile, $refLine);
20 var_dump($ex->getMessage());
21 var_dump($ex->getCode());
22 var_dump($ex->getFile());
23 var_dump($ex->getLine());
H A Dns_055.phpt20 $ex = new \Exception();
23 $foo->test3($ex);
H A Dnumeric_string_errors.phpt35 var_dump("ex" | 73);
H A Dnumeric_string_errors_assign.phpt76 $a = foxcache("ex");
H A Dtemporary_cleaning_015.phpt12 } catch (Exception $ex) {
/PHP-7.4/Zend/tests/generators/
H A Dbug67497.phpt13 } catch (ParseError $ex) {
/PHP-7.4/Zend/tests/try/
H A Dcatch_finally_001.phpt9 throw new Exception("ex");
H A Dcatch_finally_003.phpt25 throw new Exception("ex");
H A Dcatch_finally_004.phpt10 function foo (&$ex) {
24 $ex = $e;
32 var_dump(foo($ex));
35 var_dump($ex->getMessage());
36 } while ($ex = $ex->getPrevious());
H A Dcatch_finally_005.phpt7 throw new Exception("ex");
H A Dcatch_finally_006.phpt7 throw new Exception("ex");
H A Dtry_catch_finally_006.phpt7 function foo($ex = NULL) {
13 if ($ex) throw $ex;
17 if ($ex) return "return1";

Completed in 26 milliseconds

12345