Home
last modified time | relevance | path

Searched refs:ex (Results 26 – 50 of 120) sorted by relevance

12345

/PHP-7.4/Zend/tests/assert/
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/weakrefs/
H A Dweakrefs_002.phpt9 } catch (Exception $ex) {
10 var_dump($ex->getMessage());
/PHP-7.4/Zend/tests/array_unpack/
H A Dnon_integer_keys.phpt12 } catch (Error $ex) {
13 echo "Exception: " . $ex->getMessage() . "\n";
H A Dclasses.phpt22 } catch (Error $ex) {
23 echo "Exception: " . $ex->getMessage() . "\n";
/PHP-7.4/ext/ffi/tests/
H A Dbug78762.phpt9 } catch (FFI\Exception $ex) {
10 echo $ex->getMessage(), PHP_EOL;
H A Dbug78761.phpt15 } catch (FFI\Exception $ex) {
16 echo $ex->getMessage(), PHP_EOL;
/PHP-7.4/ext/sodium/tests/
H A Dbug78114.phpt11 } catch (Throwable $ex) {
12 echo $ex->getMessage(), PHP_EOL;
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_frame.c55 zend_string *phpdbg_compile_stackframe(zend_execute_data *ex) { in phpdbg_compile_stackframe() argument
57 zend_op_array *op_array = &ex->func->op_array; in phpdbg_compile_stackframe()
58 uint32_t i = 0, first_extra_arg = op_array->num_args, num_args = ZEND_CALL_NUM_ARGS(ex); in phpdbg_compile_stackframe()
59 zval *p = ZEND_CALL_ARG(ex, 1); in phpdbg_compile_stackframe()
67 if (ZEND_CALL_NUM_ARGS(ex) > first_extra_arg) { in phpdbg_compile_stackframe()
69 phpdbg_append_individual_arg(&s, i, ex->func, p); in phpdbg_compile_stackframe()
73 p = ZEND_CALL_VAR_NUM(ex, op_array->last_var + op_array->T); in phpdbg_compile_stackframe()
76 phpdbg_append_individual_arg(&s, i, ex->func, p); in phpdbg_compile_stackframe()
82 if (ex->func->type == ZEND_USER_FUNCTION) { in phpdbg_compile_stackframe()
86 smart_str_append_unsigned(&s, ex->opline->lineno); in phpdbg_compile_stackframe()
/PHP-7.4/Zend/tests/arg_unpack/
H A Dnon_integer_keys.phpt15 } catch (Error $ex) {
16 echo "Exception: " . $ex->getMessage() . "\n";
/PHP-7.4/Zend/tests/
H A Dclosure_031.phpt13 } catch (Error $ex) {
14 echo "Error: {$ex->getMessage()}\n";
H A Dns_055.phpt20 $ex = new \Exception();
23 $foo->test3($ex);
/PHP-7.4/Zend/tests/try/
H A Dtry_finally_003.phpt10 throw new Exception("ex");
23 Fatal error: Uncaught Exception: ex %s
H A Dtry_finally_001.phpt7 throw new Exception("ex");
18 Fatal error: Uncaught Exception: ex %s
H A Dtry_finally_010.phpt13 } catch (MyEx $ex) {
25 } catch (Exception $ex) {
/PHP-7.4/ext/dom/tests/
H A Dbug66783.phpt14 } catch (DOMException $ex) {
15 echo $ex->getMessage(), PHP_EOL;
/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_31_open.phpt14 } catch (Exception $ex) {
15 var_dump($ex->getMessage());
H A Dsqlite3_34_load_extension_ext_dir.phpt21 } catch (Extension $ex) {
22 var_dump($ex->getMessage());
H A Dsqlite3_33_load_extension_param.phpt23 } catch (Extension $ex) {
24 var_dump($ex->getMessage());
/PHP-7.4/ext/phar/tests/
H A Dbug81211.phpt25 } catch (UnexpectedValueException $ex) {
26 echo $ex->getMessage(), PHP_EOL;
30 } catch (UnexpectedValueException $ex) {
31 echo $ex->getMessage(), PHP_EOL;
H A Dbug79503.phpt11 } catch (UnexpectedValueException $ex) {
12 echo $ex->getMessage();
/PHP-7.4/ext/spl/tests/
H A Dbug70561.phpt16 } catch (OutOfBoundsException $ex) {
17 echo $ex->getMessage() . PHP_EOL;
/PHP-7.4/ext/com_dotnet/tests/
H A Dbug78694.phpt12 } catch (com_exception $ex) {
13 var_dump($ex->getMessage());
H A Dbug77177.phpt15 } catch (Exception $ex) {
16 echo "Exception: {$ex->getMessage()}\n";
24 } catch (Exception $ex) {
25 echo "Exception: {$ex->getMessage()}\n";
/PHP-7.4/tests/lang/
H A Dcatchable_error_002.phpt22 } catch (Error $ex) {
23 echo $ex->getMessage(), "\n";

Completed in 113 milliseconds

12345