Home
last modified time | relevance | path

Searched refs:e (Results 501 – 525 of 3475) sorted by relevance

1...<<21222324252627282930>>...139

/php-src/Zend/tests/try/
H A Dtry_multicatch_006.phpt10 } catch(Exception1 | Exception2 $e) {
11 echo get_class($e) . PHP_EOL;
12 } catch(Exception3 | Exception4 $e) {
13 echo get_class($e) . PHP_EOL;
H A Dtry_multicatch_007.phpt10 } catch(Exception1 | Exception2 $e) {
11 echo get_class($e) . PHP_EOL;
12 } catch(Exception3 | Exception4 $e) {
13 echo get_class($e) . PHP_EOL;
/php-src/ext/bcmath/tests/
H A Dbcadd_error.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
H A Dbccomp_error.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
H A Dbcdiv_error2.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
H A Dbcmod_error3.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
H A Dbcmul_error.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
H A Dbcpow_error3.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
H A Dbcsub_error.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . PHP_EOL;
/php-src/ext/dom/tests/modern/spec/
H A DDocument_implementation_createDocument_errors.phpt12 } catch (DOMException $e) {
13 echo $e->getMessage(), "\n";
18 } catch (DOMException $e) {
19 echo $e->getMessage(), "\n";
/php-src/ext/gmp/tests/
H A Dbug50283.phpt12 } catch (\ValueError $e) {
13 echo $e->getMessage() . \PHP_EOL;
17 } catch (\ValueError $e) {
18 echo $e->getMessage() . \PHP_EOL;
22 } catch (\ValueError $e) {
23 echo $e->getMessage() . \PHP_EOL;
29 } catch (\ValueError $e) {
30 echo $e->getMessage() . \PHP_EOL;
/php-src/Zend/tests/named_params/
H A Dcall_user_func_array.phpt20 } catch (\Error $e) {
21 echo $e->getMessage(), "\n";
25 } catch (\Error $e) {
26 echo $e->getMessage(), "\n";
38 } catch (\Error $e) {
39 echo $e->getMessage(), "\n";
43 } catch (\Error $e) {
44 echo $e->getMessage(), "\n";
H A Dctor_extra_named_args.phpt10 } catch (Error $e) {
11 echo $e->getMessage(), "\n";
16 } catch (Error $e) {
17 echo $e->getMessage(), "\n";
/php-src/tests/lang/
H A DpassByReference_010.phpt15 } catch (Throwable $e) {
16 echo "Exception: " . $e->getMessage() ."\n";
25 } catch (Throwable $e) {
26 echo "Exception: " . $e->getMessage() ."\n";
35 } catch (Throwable $e) {
36 echo "Exception: " . $e->getMessage() ."\n";
46 } catch (Throwable $e) {
47 echo "Exception: " . $e->getMessage() ."\n";
/php-src/ext/reflection/tests/
H A DReflectionMethod_invokeArgs_error3.phpt19 } catch (Throwable $e) {
20 echo "Exception: " . $e->getMessage() . "\n";
43 } catch (ReflectionException $e) {
44 var_dump($e->getMessage());
58 } catch (ReflectionException $e) {
59 var_dump($e->getMessage());
63 } catch (ReflectionException $e) {
64 var_dump($e->getMessage());
H A Dproperty_exists.phpt60 $oA->e = 6;
112 obj(A)::$e
123 obj(A)::$e
134 A::$e
145 A::$e
156 B::$e
167 B::$e
178 C::$e
189 C::$e
200 obj(C)::$e
[all …]
/php-src/ext/dom/tests/modern/token_list/
H A Ddimensions_error.phpt20 } catch (TypeError $e) {
21 echo $e->getMessage(), "\n";
26 } catch (TypeError $e) {
27 echo $e->getMessage(), "\n";
32 } catch (TypeError $e) {
33 echo $e->getMessage(), "\n";
39 } catch (Error $e) {
40 echo $e->getMessage(), "\n";
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_002.phpt44 } catch (Error $e) {
45 echo $e->getMessage(), "\n";
50 } catch (Error $e) {
51 echo $e->getMessage(), "\n";
56 } catch (Error $e) {
57 echo $e->getMessage(), "\n";
62 } catch (Error $e) {
63 echo $e->getMessage(), "\n";
/php-src/ext/mbstring/tests/
H A Dbug72164.phpt11 $var0 = "e";
17 } catch (\ValueError $e) {
18 echo $e->getMessage() . \PHP_EOL;
23 Option "e" is not supported
/php-src/ext/opcache/tests/
H A Dinc_array.phpt16 } catch (TypeError $e) {
17 echo $e->getMessage(), "\n";
21 } catch (TypeError $e) {
22 echo $e->getMessage(), "\n";
/php-src/ext/standard/tests/general_functions/
H A Dbug31190.phpt13 } catch (Exception $e) {
14 echo $e->getMessage();
19 } catch (Exception $e) {
20 echo $e->getMessage();
/php-src/ext/opcache/tests/jit/
H A Dassign_op_001.phpt17 } catch (DivisionByZeroError $e) {
18 echo $e->getMessage(), "\n";
22 } catch (ArithmeticError $e) {
23 echo $e->getMessage(), "\n";
/php-src/ext/date/tests/
H A Dbug40743.phpt7 echo $dt->format('T e Z'), "\n";
13 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
16 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
20 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
23 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
26 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
29 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
/php-src/Zend/tests/
H A Dtemporary_cleaning_013.phpt11 } catch (Exception $e) { print "caught Exception 1\n"; }
17 } catch (Exception $e) { print "caught Exception 2\n"; }
24 } catch (Exception $e) { print "caught Exception 3\n"; }
31 } catch (Exception $e) { print "caught Exception 4\n"; }
41 } catch (Exception $e) { print "caught Exception 5\n"; }
51 } catch (Exception $e) { print "caught Exception 6\n"; }
63 } catch (Exception $e) { print "caught Exception 7\n"; }
76 } catch (Exception $e) { print "caught Exception 8\n"; }
84 } catch (Exception $e) { print "caught Exception 9\n"; }
92 } catch (Exception $e) { print "caught Exception 10\n"; }
[all …]
H A Dbug79599.phpt16 }catch(\Exception $e){
17 var_dump($e->getMessage());
21 }catch(\Exception $e){
22 var_dump($e->getMessage());

Completed in 34 milliseconds

1...<<21222324252627282930>>...139