Home
last modified time | relevance | path

Searched refs:e (Results 101 – 125 of 1772) sorted by relevance

12345678910>>...71

/PHP-7.4/ext/ffi/tests/
H A D019.phpt12 } catch (Throwable $e) {
13 echo get_class($e) . ": " . $e->getMessage()."\n";
18 } catch (Throwable $e) {
19 echo get_class($e) . ": " . $e->getMessage()."\n";
H A D018.phpt12 } catch (Throwable $e) {
13 echo get_class($e) . ": " . $e->getMessage()."\n";
18 } catch (Throwable $e) {
19 echo get_class($e) . ": " . $e->getMessage()."\n";
/PHP-7.4/Zend/tests/
H A Ddynamic_call_freeing.phpt9 } catch (Error $e) {
10 echo $e->getMessage(), "\n";
15 } catch (Error $e) {
16 echo $e->getMessage(), "\n";
20 } catch (Error $e) {
21 echo $e->getMessage(), "\n";
H A Dindirect_call_array_004.phpt26 catch (Exception $e) {
27 echo $e->getMessage(), "\n";
35 catch (Exception $e) {
36 echo $e->getMessage(), "\n";
48 catch (Exception $e) {
49 echo $e->getMessage(), "\n";
59 catch (Exception $e) {
60 echo $e->getMessage(), "\n";
H A Dlist_keyed_evaluation_order.phpt11 $e = new IndexableRetrievable("E", new Indexable(["A" => "value for offset A", "C" => "value for of…
15 // list($a => $b, $c => $d) = $e;
17 // 1. Evaluate $e
19 // 3. Evaluate $e[$a]
20 // 4. Assign $b from $e[$a]
22 // 6. Evaluate $e[$c]
23 // 7. Assign $c from $e[$a]
25 list((string)$a => $store["B"], (string)$c => $store["D"]) = $e->getIndexable();
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;
/PHP-7.4/ext/standard/tests/array/
H A Darray_fill.phpt41 start: 0 num: 0 value: e
73 start: 0 num: 1 value: e
76 string(1) "e"
120 string(1) "e"
122 string(1) "e"
184 string(1) "e"
228 string(1) "e"
230 string(1) "e"
292 string(1) "e"
336 string(1) "e"
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dsprintf_basic6.phpt14 $format1 = "%e";
15 $format2 = "%E %e";
16 $format3 = "%e %E %e";
38 string(11) "1.000000e+3"
39 string(23) "1.000000E+3 2.000000e+3"
40 string(35) "1.000000e+3 2.000000E+3 3.000000e+3"
/PHP-7.4/tests/classes/
H A Darray_access_013.phpt20 catch(Exception $e)
22 echo "Caught in " . $e->getMessage() . "()\n";
29 catch(Exception $e)
31 echo "Caught in " . $e->getMessage() . "()\n";
38 catch(Exception $e)
40 echo "Caught in " . $e->getMessage() . "()\n";
47 catch(Exception $e)
49 echo "Caught in " . $e->getMessage() . "()\n";
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_constructor_error1.phpt19 } catch (Exception $e) {
20 print $e->__toString();
25 } catch (Exception $e) {
26 print $e->__toString();
31 } catch (Exception $e) {
32 print $e->__toString();
37 } catch (Exception $e) {
38 print $e->__toString();
43 } catch (Exception $e) {
44 print $e->__toString();
[all …]
H A DReflectionClass_newInstanceArgs_001.phpt43 } catch (Throwable $e) {
44 echo "Exception: " . $e->getMessage() . "\n";
48 } catch (Throwable $e) {
54 } catch (Throwable $e) {
59 } catch (Throwable $e) {
66 } catch (Exception $e) {
67 echo $e->getMessage() . "\n";
73 } catch (Exception $e) {
74 echo $e->getMessage() . "\n";
83 } catch (Exception $e) {
[all …]
/PHP-7.4/tests/lang/
H A DforeachLoopObjects.002.phpt11 private $e = "Original e";
66 private $e = "Overridden e";
189 ["e":"C":private]=>
214 ["e":"C":private]=>
235 ["e":"E":private]=>
241 ["e":"C":private]=>
264 ["e":"C":private]=>
289 ["e":"C":private]=>
310 ["e":"E":private]=>
316 ["e":"C":private]=>
[all …]
/PHP-7.4/ext/filter/tests/
H A D050.phpt8 '1e+308' => 1e+308,
9 '1e+309' => false,
10 '1e-323' => 1e-323,
11 '1e-324' => false,
/PHP-7.4/ext/json/tests/
H A Dbug68992.phpt22 } catch(Exception $e) {
24 printf("%s (%d) [%s]\n", $e->getMessage(), $e->getCode(), get_class($e));
25 } while ($e = $e->getPrevious());
/PHP-7.4/ext/tidy/tests/
H A Duninitialized.phpt11 } catch (Error $e) {
12 echo $e->getMessage(), "\n";
16 } catch (Error $e) {
17 echo $e->getMessage(), "\n";
21 } catch (Error $e) {
22 echo $e->getMessage(), "\n";
/PHP-7.4/ext/standard/
H A Duuencode.c78 e = s + src_len; in php_uuencode()
80 while ((s + 3) < e) { in php_uuencode()
82 if (ee > e) { in php_uuencode()
83 ee = e; in php_uuencode()
105 if (s < e) { in php_uuencode()
107 *p++ = PHP_UU_ENC(e - s); in php_uuencode()
133 char *s, *e, *p, *ee; in php_uudecode() local
139 e = src + src_len; in php_uudecode()
141 while (s < e) { in php_uudecode()
154 if (ee > e) { in php_uudecode()
[all …]
/PHP-7.4/ext/phar/tests/bug64931/
H A Dbug64931.phpt17 } catch (Exception $e) {
18 echo "CAUGHT: ". $e->getMessage() ."\n";
23 } catch (Exception $e) {
24 echo "CAUGHT: ". $e->getMessage() ."\n";
29 } catch (Exception $e) {
30 echo "CAUGHT: ". $e->getMessage() ."\n";
35 } catch (Exception $e) {
36 echo "CAUGHT: ". $e->getMessage() ."\n";
41 } catch (Exception $e) {
42 echo "CAUGHT: ". $e->getMessage() ."\n";
/PHP-7.4/ext/phar/tests/
H A Dpharfileinfo_construct.phpt15 } catch (Exception $e) {
16 echo $e->getMessage() . "\n";
22 } catch (TypeError $e) {
23 echo $e->getMessage() . "\n";
32 } catch (Exception $e) {
33 echo $e->getMessage() . "\n";
38 } catch (Exception $e) {
39 echo $e->getMessage() . "\n";
44 } catch (Exception $e) {
45 echo $e->getMessage() . "\n";
H A Dinvalid_alias.phpt14 } catch (Exception $e) {
15 echo $e->getMessage() . "\n";
19 } catch (Exception $e) {
20 echo $e->getMessage() . "\n";
25 } catch (Exception $e) {
26 echo $e->getMessage() . "\n";
31 } catch (Exception $e) {
32 echo $e->getMessage() . "\n";
H A Dpharfileinfo_compression.phpt23 } catch (Exception $e) {
24 echo $e->getMessage() . "\n";
28 } catch (Exception $e) {
29 echo $e->getMessage() . "\n";
36 } catch (Exception $e) {
37 echo $e->getMessage() . "\n";
41 } catch (Exception $e) {
42 echo $e->getMessage() . "\n";
47 } catch (Exception $e) {
61 } catch (Exception $e) {
[all …]
/PHP-7.4/Zend/tests/try/
H A Dbug70228_3.phpt22 } catch (Exception $e) {
24 echo $e->getMessage() . "\n";
25 $e = $e->getPrevious();
26 } while ($e);
/PHP-7.4/ext/opcache/tests/
H A Dbug65665.phpt20 catch (Exception $e)
32 catch (Exception $e)
40 catch (Exception $e)
57 catch (Exception $e)
70 catch (Exception $e)
78 catch (Exception $e)
96 catch (Exception $e)
108 catch (Exception $e)
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_063.phpt20 } catch (Error $e) { echo $e->getMessage(), "\n"; }
33 } catch (Error $e) { echo $e->getMessage(), "\n"; }
38 } catch (Error $e) { echo $e->getMessage(), "\n"; }
45 } catch (Error $e) { echo $e->getMessage(), "\n"; }
50 } catch (Error $e) { echo $e->getMessage(), "\n"; }
56 } catch (Error $e) { echo $e->getMessage(), "\n"; }
H A Dtyped_properties_064.phpt20 } catch (Error $e) { echo $e->getMessage(), "\n"; }
33 } catch (Error $e) { echo $e->getMessage(), "\n"; }
38 } catch (Error $e) { echo $e->getMessage(), "\n"; }
45 } catch (Error $e) { echo $e->getMessage(), "\n"; }
50 } catch (Error $e) { echo $e->getMessage(), "\n"; }
56 } catch (Error $e) { echo $e->getMessage(), "\n"; }

Completed in 122 milliseconds

12345678910>>...71