Home
last modified time | relevance | path

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

1234567

/PHP-8.1/ext/pgsql/tests/
H A Dbug81720.phpt15 } catch (Throwable $ex) {
16 echo $ex->getMessage(), PHP_EOL;
23 } catch (Throwable $ex) {
24 echo $ex->getMessage(), PHP_EOL;
/PHP-8.1/ext/pcntl/tests/
H A Dbug81577_2.phpt12 } catch (Throwable $ex) {
13 echo get_class($ex) , " : " , $ex->getMessage() , "\n";
H A Dbug81577_3.phpt14 } catch (Throwable $ex) {
15 echo get_class($ex) , " : " , $ex->getMessage() , "\n";
H A Dbug81577.phpt21 } catch (Throwable $ex) {
22 echo get_class($ex) , " : " , $ex->getMessage() , "\n";
/PHP-8.1/ext/gd/tests/
H A Dbug64641.phpt31 $ex = imagecreatefrompng(__DIR__ . '/bug64641.png');
32 if (($diss = calc_image_dissimilarity($ex, $im)) < 1e-5) {
37 imagedestroy($ex);
/PHP-8.1/ext/com_dotnet/tests/
H A Dbug64130.phpt10 } catch (com_exception $ex) {
11 die("skip {$ex->getMessage()}");
22 } catch (com_exception $ex) {}
/PHP-8.1/ext/bcmath/tests/
H A Dbcmod_error2.phpt11 } catch (DivisionByZeroError $ex) {
12 echo $ex->getMessage(), PHP_EOL;
H A Dbcdiv_error1.phpt13 } catch (DivisionByZeroError $ex) {
14 echo $ex->getMessage(), PHP_EOL;
H A Dbcpowmod_zero_modulus.phpt11 } catch (DivisionByZeroError $ex) {
12 echo $ex->getMessage(), PHP_EOL;
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_frame.c53 zend_string *phpdbg_compile_stackframe(zend_execute_data *ex) { in phpdbg_compile_stackframe() argument
55 zend_op_array *op_array = &ex->func->op_array; in phpdbg_compile_stackframe()
56 uint32_t i = 0, first_extra_arg = op_array->num_args, num_args = ZEND_CALL_NUM_ARGS(ex); in phpdbg_compile_stackframe()
57 zval *p = ZEND_CALL_ARG(ex, 1); in phpdbg_compile_stackframe()
65 if (ZEND_CALL_NUM_ARGS(ex) > first_extra_arg) { in phpdbg_compile_stackframe()
67 phpdbg_append_individual_arg(&s, i, ex->func, p); in phpdbg_compile_stackframe()
71 p = ZEND_CALL_VAR_NUM(ex, op_array->last_var + op_array->T); in phpdbg_compile_stackframe()
74 phpdbg_append_individual_arg(&s, i, ex->func, p); in phpdbg_compile_stackframe()
80 if (ex->func->type == ZEND_USER_FUNCTION) { in phpdbg_compile_stackframe()
84 smart_str_append_unsigned(&s, ex->opline->lineno); in phpdbg_compile_stackframe()
/PHP-8.1/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());
/PHP-8.1/ext/sodium/tests/
H A Dbug78114.phpt9 } catch (Throwable $ex) {
10 echo $ex->getMessage(), PHP_EOL;
/PHP-8.1/ext/hash/tests/
H A Dbug81714.phpt9 } catch (Exception $ex) {
10 var_dump($ex->getMessage());
H A Dgh12186_2.phpt11 } catch (Throwable $ex) {
12 echo $ex->getMessage() . "\n";
/PHP-8.1/ext/imap/tests/
H A Dimap_constructor.phpt10 } catch (Error $ex) {
11 echo "Exception: ", $ex->getMessage(), "\n";
/PHP-8.1/ext/ffi/tests/
H A Dbug78762.phpt9 } catch (FFI\Exception $ex) {
10 echo $ex->getMessage(), PHP_EOL;
/PHP-8.1/ext/ldap/tests/
H A Dldap_constructor.phpt10 } catch (Error $ex) {
11 echo "Exception: ", $ex->getMessage(), "\n";
/PHP-8.1/ext/intl/tests/
H A Dbug74063.phpt10 } catch (Exception $ex) {
11 echo $ex->getMessage(), PHP_EOL;
/PHP-8.1/ext/calendar/tests/
H A Dcal_from_jd_error1.phpt11 } catch (ValueError $ex) {
12 echo "{$ex->getMessage()}\n";
H A Dcal_to_jd_error1.phpt11 } catch (ValueError $ex) {
12 echo "{$ex->getMessage()}\n";
H A Djdtounix_error1.phpt13 } catch (ValueError $ex) {
14 echo $ex->getMessage(), PHP_EOL;
/PHP-8.1/Zend/
H A Dzend_exceptions.c92 zval *previous, *ancestor, *ex; in zend_exception_set_previous() local
110 ex = &zv; in zend_exception_set_previous()
127 ex = previous; in zend_exception_set_previous()
818 zval ex, tmp; in zend_throw_exception_zstr() local
840 return Z_OBJ(ex); in zend_throw_exception_zstr()
851 return ex; in zend_throw_exception()
901 ZVAL_OBJ(&exception, ex); in zend_exception_error()
902 ce_exception = ex->ce; in zend_exception_error()
920 zend_call_known_instance_method_with_0_params(ex->ce->__tostring, ex, &tmp); in zend_exception_error()
925 zend_update_property_ex(i_get_exception_base(ex), ex, ZSTR_KNOWN(ZEND_STR_STRING), &tmp); in zend_exception_error()
[all …]
/PHP-8.1/ext/ftp/tests/
H A Dftp_constructor.phpt11 } catch (Error $ex) {
12 echo "Exception: ", $ex->getMessage(), "\n";
/PHP-8.1/ext/sockets/tests/
H A Dsocket_select_error.phpt10 } catch (TypeError $ex) {
11 echo $ex->getMessage(), PHP_EOL;

Completed in 66 milliseconds

1234567