Home
last modified time | relevance | path

Searched refs:e (Results 301 – 325 of 3475) sorted by relevance

1...<<11121314151617181920>>...139

/php-src/ext/gmp/tests/
H A Dgmp_sqrt.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . \PHP_EOL;
15 } catch (\ValueError $e) {
16 echo $e->getMessage() . \PHP_EOL;
28 } catch (\ValueError $e) {
29 echo $e->getMessage() . \PHP_EOL;
36 } catch (\TypeError $e) {
37 echo $e->getMessage() . \PHP_EOL;
H A Dgmp_sub.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . \PHP_EOL;
15 } catch (\TypeError $e) {
16 echo $e->getMessage() . \PHP_EOL;
27 } catch (\TypeError $e) {
28 echo $e->getMessage() . \PHP_EOL;
33 } catch (\TypeError $e) {
34 echo $e->getMessage() . \PHP_EOL;
/php-src/Zend/tests/
H A Dbug65784.phpt12 } catch (Exception $e) {
19 } catch (Exception $e) {
21 var_dump($e->getMessage());
22 } while ($e = $e->getPrevious());
33 } catch (Exception $e) {
36 } catch (Exception $e) {
50 } catch (Exception $e) {
H A Dclosure_014.phpt35 $e =& $x($a);
36 $e = 2;
38 $e =& $x->__invoke($b);
39 $e = 3;
46 $e =& $x($c);
47 $e = 4;
49 $e =& $x->__invoke($d);
50 $e = 5;
H A Dbug44660.phpt14 } catch (Error $e) {
15 echo $e->getMessage(), "\n";
21 } catch (Error $e) {
22 echo $e->getMessage(), "\n";
28 } catch (Error $e) {
29 echo $e->getMessage(), "\n";
35 } catch (Error $e) {
36 echo $e->getMessage(), "\n";
42 } catch (Error $e) {
43 echo $e->getMessage(), "\n";
H A Dint_static_prop_name.phpt19 } catch (Error $e) {
20 echo $e->getMessage(), "\n";
25 } catch (Error $e) {
26 echo $e->getMessage(), "\n";
31 } catch (Error $e) {
32 echo $e->getMessage(), "\n";
H A Dbug61011.phpt11 } catch (Exception $e) {
14 } catch (Exception $e) {
17 } catch (Exception $e) {
20 } catch (Exception $e){
23 } catch (Exception $e) {
27 } catch (Exception $e) {
/php-src/ext/mbstring/tests/
H A Dmb_check_encoding_invalid_encodings.phpt14 } catch (\ValueError $e) {
15 echo $e->getMessage() . \PHP_EOL;
19 } catch (\ValueError $e) {
20 echo $e->getMessage() . \PHP_EOL;
26 } catch (\ValueError $e) {
27 echo $e->getMessage() . \PHP_EOL;
31 } catch (\ValueError $e) {
32 echo $e->getMessage() . \PHP_EOL;
/php-src/ext/odbc/tests/
H A Dodbc_close_001.phpt27 } catch (Error $e) {
28 echo $e->getMessage() . "\n";
33 } catch (Error $e) {
34 echo $e->getMessage() . "\n";
39 } catch (Error $e) {
40 echo $e->getMessage() . "\n";
45 } catch (Error $e) {
46 echo $e->getMessage() . "\n";
/php-src/ext/dom/tests/modern/spec/
H A DParentNode_hierarchy_text_nodes.phpt12 } catch (DOMException $e) {
13 echo "Exception: " . $e->getMessage() . "\n";
18 } catch (DOMException $e) {
19 echo "Exception: " . $e->getMessage() . "\n";
25 } catch (DOMException $e) {
26 echo "Exception: " . $e->getMessage() . "\n";
36 } catch (DOMException $e) {
37 echo "Exception: " . $e->getMessage() . "\n";
H A Dpre_insertion_validation.phpt15 } catch (DOMException $e) {
16 echo "Exception: " . $e->getMessage() . "\n";
20 } catch (DOMException $e) {
21 echo "Exception: " . $e->getMessage() . "\n";
25 } catch (DOMException $e) {
34 } catch (DOMException $e) {
42 } catch (DOMException $e) {
54 } catch (DOMException $e) {
63 } catch (DOMException $e) {
79 } catch (DOMException $e) {
[all …]
/php-src/Zend/tests/readonly_props/
H A Dreadonly_clone_error5.phpt37 } catch (Error $e) {
38 echo $e->getMessage(), "\n";
43 } catch (Error $e) {
44 echo $e->getMessage(), "\n";
49 } catch (Error $e) {
50 echo $e->getMessage(), "\n";
55 } catch (Error $e) {
56 echo $e->getMessage(), "\n";
/php-src/ext/standard/tests/strings/
H A Dsprintf_star.phpt43 } catch (ValueError $e) {
44 echo $e->getMessage(), "\n";
49 } catch (ValueError $e) {
50 echo $e->getMessage(), "\n";
55 } catch (ValueError $e) {
56 echo $e->getMessage(), "\n";
61 } catch (ValueError $e) {
62 echo $e->getMessage(), "\n";
71 1.2345678901234569e+100
73 1.2345678901234569e+100
H A Dfprintf_error.phpt12 } catch (TypeError $e) {
13 echo $e->getMessage(), "\n";
19 } catch (TypeError $e) {
20 echo $e->getMessage(), "\n";
26 } catch (TypeError $e) {
27 echo $e->getMessage(), "\n";
/php-src/ext/dom/tests/
H A DtoString_exceptions.phpt20 try { $doc->encoding = $badStr; } catch (Exception $e) { echo "Exception\n"; }
21 try { $doc->version = $badStr; } catch (Exception $e) { echo "Exception\n"; }
22 try { $doc->documentURI = $badStr; } catch (Exception $e) { echo "Exception\n"; }
28 try { $attr->value = $badStr; } catch (Exception $e) { echo "Exception\n"; }
29 try { $attr->nodeValue = $badStr; } catch (Exception $e) { echo "Exception\n"; }
32 try { $node2->nodeValue = $badStr; } catch (Exception $e) { echo "Exception\n"; }
33 try { $node2->textContent = $badStr; } catch (Exception $e) { echo "Exception\n"; }
35 try { $data->data = $badStr; } catch (Exception $e) { echo "Exception\n"; }
38 try { $node3->prefix = $badStr; } catch (Exception $e) { echo "Exception\n"; }
41 try { $pi->data = $badStr; } catch (Exception $e) { echo "Exception\n"; }
/php-src/ext/standard/tests/array/
H A Darray_fill.phpt39 string(1) "e"
71 string(1) "e"
74 string(1) "e"
115 string(1) "e"
118 string(1) "e"
147 string(1) "e"
179 string(1) "e"
223 string(1) "e"
255 string(1) "e"
287 string(1) "e"
[all …]
H A Dbug77931.phpt8 } catch (TypeError $e) {
9 echo $e->getMessage(), "\n";
13 } catch (TypeError $e) {
14 echo $e->getMessage(), "\n";
18 } catch (TypeError $e) {
19 echo $e->getMessage(), "\n";
/php-src/ext/opcache/tests/jit/
H A Dshift_right_002.phpt33 } catch (Throwable $e) {
34 echo "Exception " . $e->getMessage() . "\n";
38 } catch (Throwable $e) {
39 echo "Exception " . $e->getMessage() . "\n";
43 } catch (Throwable $e) {
44 echo "Exception (" . get_class($e) . "): " . $e->getMessage() . "\n";
/php-src/ext/pdo_sqlite/tests/
H A Dopen_basedir.phpt13 } catch (Exception $e) {
14 echo $e->getMessage() . "\n";
18 } catch (Exception $e) {
19 echo $e->getMessage() . "\n";
23 } catch (Exception $e) {
24 echo $e->getMessage() . "\n";
/php-src/ext/pcre/tests/
H A Dpreg_replace_callback3.phpt8 } catch (\TypeError $e) {
9 echo $e->getMessage() . \PHP_EOL;
13 } catch (\TypeError $e) {
14 echo $e->getMessage() . \PHP_EOL;
20 } catch (\TypeError $e) {
21 echo $e->getMessage() . \PHP_EOL;
/php-src/ext/intl/tests/
H A Dcalendar_clear_error.phpt14 } catch (\ValueError $e) {
15 echo $e->getMessage() . \PHP_EOL;
19 } catch (\ValueError $e) {
20 echo $e->getMessage() . \PHP_EOL;
25 } catch (\TypeError $e) {
26 echo $e->getMessage() . \PHP_EOL;
H A Dcalendar_setMinimalDaysInFirstWeek_error.phpt14 } catch (\ValueError $e) {
15 echo $e->getMessage() . \PHP_EOL;
20 } catch (\ValueError $e) {
21 echo $e->getMessage() . \PHP_EOL;
25 } catch (\TypeError $e) {
26 echo $e->getMessage() . \PHP_EOL;
/php-src/ext/reflection/tests/
H A Dbug76737.phpt9 } catch (Exception $e) {
10 echo $e->getMessage(), "\n";
15 } catch (Exception $e) {
16 echo $e->getMessage(), "\n";
21 } catch (Exception $e) {
22 echo $e->getMessage(), "\n";
/php-src/ext/pdo/tests/
H A Dpdo_uninitialized.phpt18 } catch (Error $e) {
19 echo $e->getMessage(), "\n";
25 } catch (Error $e) {
26 echo $e->getMessage(), "\n";
31 } catch (Error $e) {
32 echo $e->getMessage(), "\n";
/php-src/ext/dom/tests/modern/html/interactions/
H A DHTMLCollection_dimension_errors.phpt12 } catch (Error $e) {
13 echo $e->getMessage(), "\n";
18 } catch (Error $e) {
19 echo $e->getMessage(), "\n";
24 } catch (Error $e) {
25 echo $e->getMessage(), "\n";

Completed in 34 milliseconds

1...<<11121314151617181920>>...139