Home
last modified time | relevance | path

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

12345678910>>...139

/php-src/ext/random/tests/03_randomizer/
H A Dengine_unsafe_empty_string.phpt24 } catch (Random\BrokenRandomEngineError $e) {
25 echo $e->getMessage(), PHP_EOL;
30 } catch (Random\BrokenRandomEngineError $e) {
31 echo $e->getMessage(), PHP_EOL;
37 echo $e->getMessage(), PHP_EOL;
43 echo $e->getMessage(), PHP_EOL;
49 echo $e->getMessage(), PHP_EOL;
55 echo $e->getMessage(), PHP_EOL;
61 echo $e->getMessage(), PHP_EOL;
67 echo $e->getMessage(), PHP_EOL;
[all …]
/php-src/Zend/tests/
H A Dbug70944.phpt6 $e = new Exception("Foo");
8 throw new Exception("Bar", 0, $e);
10 throw $e;
12 } catch (Exception $e) {
13 var_dump((string)$e);
17 $e = new Exception("Foo");
19 throw new Exception("Bar", 0, $e);
21 throw new Exception("Dummy", 0, $e);
23 } catch (Exception $e) {
24 var_dump((string)$e);
H A Dexception_013.phpt11 } catch (Error $e) {
12 …echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "…
17 } catch (Error $e) {
18 …echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "…
23 } catch (Error $e) {
24 …echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "…
/php-src/Zend/tests/nullsafe_operator/
H A D002.phpt8 } catch (Throwable $e) {
9 var_dump($e->getMessage());
14 } catch (Throwable $e) {
15 var_dump($e->getMessage());
20 } catch (Throwable $e) {
21 var_dump($e->getMessage());
26 } catch (Throwable $e) {
27 var_dump($e->getMessage());
32 } catch (Throwable $e) {
33 var_dump($e->getMessage());
/php-src/ext/reflection/tests/
H A DReflectionClass_getProperty_002.phpt16 } catch (TypeError $e) {
17 echo $e->getMessage() . "\n";
21 } catch (TypeError $e) {
22 echo $e->getMessage() . "\n";
26 } catch (exception $e) {
27 echo $e->getMessage() . "\n";
31 } catch (exception $e) {
36 } catch (exception $e) {
41 } catch (exception $e) {
46 } catch (TypeError $e) {
[all …]
H A DReflectionClass_getMethod_002.phpt16 } catch (TypeError $e) {
17 echo $e->getMessage() . "\n";
21 } catch (TypeError $e) {
22 echo $e->getMessage() . "\n";
26 } catch (Exception $e) {
27 echo $e->getMessage() . "\n";
31 } catch (Exception $e) {
36 } catch (Exception $e) {
41 } catch (Exception $e) {
46 } catch (TypeError $e) {
[all …]
H A DReflectionReference_errors.phpt8 } catch (Error $e) {
9 echo $e->getMessage(), "\n";
14 } catch (TypeError $e) {
15 echo $e->getMessage(), "\n";
20 } catch (TypeError $e) {
21 echo $e->getMessage(), "\n";
28 echo $e->getMessage(), "\n";
35 } catch (Exception $e) {
36 echo $e->getMessage(), "\n";
41 } catch (Exception $e) {
[all …]
/php-src/ext/xsl/tests/
H A DXSLTProcessor_callables_errors.phpt13 } catch (TypeError $e) {
14 echo $e->getMessage(), "\n";
19 } catch (TypeError $e) {
20 echo $e->getMessage(), "\n";
25 } catch (Throwable $e) {
26 echo $e->getMessage(), "\n";
31 } catch (Throwable $e) {
37 } catch (Throwable $e) {
43 } catch (Throwable $e) {
49 } catch (Throwable $e) {
[all …]
/php-src/ext/snmp/tests/
H A Dsnmp-object-error.phpt22 } catch (TypeError $e) {
27 } catch (TypeError $e) {
32 } catch (TypeError $e) {
37 } catch (ValueError $e) {
45 } catch (SNMPException $e) {
46 var_dump($e->getCode());
52 } catch (SNMPException $e) {
63 } catch (\ValueError $e) {
72 } catch (\Error $e) {
81 } catch (TypeError $e) {
[all …]
/php-src/Zend/tests/function_arguments/
H A Dargument_count_incorrect_userland.phpt8 } catch (\Error $e) {
9 echo get_class($e) . PHP_EOL;
10 echo $e->getMessage() . PHP_EOL;
16 } catch (\Error $e) {
17 echo get_class($e) . PHP_EOL;
18 echo $e->getMessage() . PHP_EOL;
25 } catch (\Error $e) {
26 echo get_class($e) . PHP_EOL;
27 echo $e->getMessage() . PHP_EOL;
32 } catch (\Error $e) {
[all …]
/php-src/ext/intl/tests/
H A Dgregoriancalendar_set_date_time_error.phpt11 } catch (ValueError $e) {
12 echo $e->getMessage(), "\n";
17 } catch (ValueError $e) {
18 echo $e->getMessage(), "\n";
23 } catch (ValueError $e) {
24 echo $e->getMessage(), "\n";
29 } catch (ValueError $e) {
30 echo $e->getMessage(), "\n";
35 } catch (ValueError $e) {
36 echo $e->getMessage(), "\n";
[all …]
/php-src/sapi/fpm/fpm/events/
H A Depoll.c158 struct epoll_event e; in fpm_event_epoll_add() local
163 e.data.u64 = 0; in fpm_event_epoll_add()
165 e.events = EPOLLIN; in fpm_event_epoll_add()
166 e.data.fd = ev->fd; in fpm_event_epoll_add()
167 e.data.ptr = (void *)ev; in fpm_event_epoll_add()
170 e.events = e.events | EPOLLET; in fpm_event_epoll_add()
190 struct epoll_event e; in fpm_event_epoll_remove() local
193 e.events = EPOLLIN; in fpm_event_epoll_remove()
194 e.data.fd = ev->fd; in fpm_event_epoll_remove()
195 e.data.ptr = (void *)ev; in fpm_event_epoll_remove()
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_ord.phpt16 } catch (\ValueError $e) {
17 echo $e->getMessage() . \PHP_EOL;
23 } catch (\ValueError $e) {
24 echo $e->getMessage() . \PHP_EOL;
28 } catch (\ValueError $e) {
29 echo $e->getMessage() . \PHP_EOL;
33 } catch (\ValueError $e) {
34 echo $e->getMessage() . \PHP_EOL;
38 } catch (\ValueError $e) {
43 } catch (\ValueError $e) {
[all …]
/php-src/ext/standard/tests/general_functions/
H A Dphp_uname_error.phpt8 } catch (Throwable $e) {
9 echo $e::class, ': ', $e->getMessage(), PHP_EOL;
13 } catch (Throwable $e) {
14 echo $e::class, ': ', $e->getMessage(), PHP_EOL;
18 } catch (Throwable $e) {
19 echo $e::class, ': ', $e->getMessage(), PHP_EOL;
H A Dvar_export_basic3.phpt19 "10.5e+5" => 10.5e+5,
21 "1e-5" => 1e-5,
22 "1e+5" => 1e+5,
26 ".5e+7" => .5e+7,
27 ".6e-19" => .6e-19,
103 -- Iteration: 10.5e+5 --
115 -- Iteration: 1e-5 --
121 -- Iteration: 1e+5 --
145 -- Iteration: .5e+7 --
151 -- Iteration: .6e-19 --
/php-src/ext/date/tests/
H A Doo_001.phpt25 } catch (Error $e) {
26 echo $e::class, ': ', $e->getMessage(), "\n";
31 } catch (Exception $e) {
32 echo $e::class, ': ', $e->getMessage(), "\n";
41 } catch (Error $e) {
42 echo $e::class, ': ', $e->getMessage(), "\n";
48 echo $e::class, ': ', $e->getMessage(), "\n";
54 } catch (Error $e) {
55 echo $e::class, ': ', $e->getMessage(), "\n";
59 } catch (Error $e) {
[all …]
/php-src/ext/dom/tests/
H A DDOMDocument_getElementsByTagName_liveness.phpt8 …t><e i="1"/><e i="2"/><e i="3"/><e i="4"/><e i="5"/><e i="6"/><e i="7"/><e i="8"/><e i="9"/><e i="…
39 foreach ($doc->getElementsByTagName('e') as $node) {
H A DDOMXPath_callables_errors.phpt14 } catch (TypeError $e) {
15 echo $e->getMessage(), "\n";
20 } catch (TypeError $e) {
21 echo $e->getMessage(), "\n";
26 } catch (Throwable $e) {
27 echo $e->getMessage(), "\n";
32 } catch (Throwable $e) {
38 } catch (Throwable $e) {
44 } catch (Throwable $e) {
50 } catch (Throwable $e) {
[all …]
/php-src/Zend/tests/typehints/
H A Dor_null.phpt13 echo $e, PHP_EOL;
25 echo $e, PHP_EOL;
31 echo $e, PHP_EOL;
37 echo $e, PHP_EOL;
43 echo $e, PHP_EOL;
49 echo $e, PHP_EOL;
57 echo $e, PHP_EOL;
65 echo $e, PHP_EOL;
75 echo $e, PHP_EOL;
85 echo $e, PHP_EOL;
[all …]
/php-src/ext/dom/tests/modern/spec/
H A DHTMLDocument_createCDATASection.phpt10 } catch (DOMException $e) {
11 var_dump($e->getCode());
12 echo $e->getMessage(), "\n";
16 } catch (DOMException $e) {
17 var_dump($e->getCode());
18 echo $e->getMessage(), "\n";
24 } catch (DOMException $e) {
25 var_dump($e->getCode());
26 echo $e->getMessage(), "\n";
H A DHTMLDocument_createProcessingInstruction.phpt10 } catch (DOMException $e) {
11 var_dump($e->getCode());
12 echo $e->getMessage(), "\n";
16 } catch (DOMException $e) {
17 var_dump($e->getCode());
18 echo $e->getMessage(), "\n";
22 } catch (DOMException $e) {
23 var_dump($e->getCode());
24 echo $e->getMessage(), "\n";
/php-src/ext/standard/tests/strings/
H A Dstr_getcsv_errors.phpt9 } catch (Throwable $e) {
10 echo $e::class, ': ', $e->getMessage(), PHP_EOL;
14 } catch (Throwable $e) {
15 echo $e::class, ': ', $e->getMessage(), PHP_EOL;
19 } catch (Throwable $e) {
20 echo $e::class, ': ', $e->getMessage(), PHP_EOL;
/php-src/ext/zlib/tests/
H A Ddeflate_init_error.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . \PHP_EOL;
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . \PHP_EOL;
22 } catch (\ValueError $e) {
23 echo $e->getMessage() . \PHP_EOL;
28 } catch (\ValueError $e) {
29 echo $e->getMessage() . \PHP_EOL;
34 } catch (\ValueError $e) {
35 echo $e->getMessage() . \PHP_EOL;
/php-src/Zend/tests/enum/
H A Dno-write-properties.phpt17 } catch (Error $e) {
18 echo $e->getMessage() . "\n";
22 } catch (Error $e) {
23 echo $e->getMessage() . "\n";
29 } catch (Error $e) {
30 echo $e->getMessage() . "\n";
34 } catch (Error $e) {
35 echo $e->getMessage() . "\n";
39 } catch (Error $e) {
40 echo $e->getMessage() . "\n";
/php-src/ext/spl/tests/
H A DArrayObject_illegal_offset.phpt9 } catch (TypeError $e) {
10 echo $e->getMessage(), "\n";
14 } catch (TypeError $e) {
15 echo $e->getMessage(), "\n";
19 } catch (TypeError $e) {
20 echo $e->getMessage(), "\n";
24 } catch (TypeError $e) {
25 echo $e->getMessage(), "\n";
29 } catch (TypeError $e) {
30 echo $e->getMessage(), "\n";

Completed in 43 milliseconds

12345678910>>...139