Home
last modified time | relevance | path

Searched refs:e (Results 451 – 475 of 3475) sorted by relevance

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

/php-src/Zend/tests/
H A Djump13.phpt6 e: return;
14 catch(Exception $e) {
19 catch(Exception $e) {
21 goto e;
H A Dexception_handler_005.phpt9 function foo($e) {
10 var_dump(__FUNCTION__."(): ".get_class($e)." thrown!");
13 function foo1($e) {
14 var_dump(__FUNCTION__."(): ".get_class($e)." thrown!");
H A Dproperty_access_errors_for_guarded_properties.phpt37 } catch (Error $e) {
38 echo $e->getMessage(), "\n";
42 } catch (Error $e) {
43 echo $e->getMessage(), "\n";
47 } catch (Error $e) {
48 echo $e->getMessage(), "\n";
H A Dbug70895.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";
H A Dexception_handler_006.phpt11 function foo($e) {
12 var_dump(__FUNCTION__."(): ".get_class($e)." thrown!");
15 function foo1($e) {
16 var_dump(__FUNCTION__."(): ".get_class($e)." thrown!");
H A Dfirst_class_callable_assert.phpt12 } catch (\AssertionError $e) {
13 echo $e->getMessage(), "\n";
18 } catch (\AssertionError $e) {
19 echo $e->getMessage(), "\n";
H A Dconstant_expressions_exceptions_002.phpt7 } catch (Error $e) {
8 …echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "…
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c105 const mbfl_html_entity_entry *e; in mbfl_filt_conv_html_enc() local
113 if (c == e->code) { in mbfl_filt_conv_html_enc()
272 if (e != 0) in mbfl_filt_conv_html_dec()
273 return e; in mbfl_filt_conv_html_dec()
292 if (e != 0) in mbfl_filt_conv_html_dec()
293 return e; in mbfl_filt_conv_html_dec()
320 if (e != 0) in mbfl_filt_conv_html_dec_flush()
321 err = e; in mbfl_filt_conv_html_dec_flush()
348 while (p < e && out < limit) { in mb_htmlent_to_wchar()
357 if (*p == '#' && (e - p) >= 2) { in mb_htmlent_to_wchar()
[all …]
/php-src/ext/standard/tests/array/
H A Dmax.phpt10 } catch (\TypeError $e) {
11 echo $e->getMessage() . "\n";
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . "\n";
22 } catch (\TypeError $e) {
23 echo $e->getMessage() . "\n";
H A Dmin.phpt10 } catch (\TypeError $e) {
11 echo $e->getMessage() . "\n";
16 } catch (\ValueError $e) {
17 echo $e->getMessage() . "\n";
22 } catch (\TypeError $e) {
23 echo $e->getMessage() . "\n";
/php-src/ext/json/tests/
H A Djson_exceptions_error_clearing.phpt16 } catch (JsonException $e) {
17 echo "Caught JSON exception: ", $e->getCode(), PHP_EOL;
24 } catch (JsonException $e) {
25 echo "Caught JSON exception: ", $e->getCode(), PHP_EOL;
33 } catch (JsonException $e) {
34 echo "Caught JSON exception: ", $e->getCode(), PHP_EOL;
/php-src/ext/phar/tests/
H A Dphar_construct_invalidurl.phpt11 } catch (UnexpectedValueException $e) {
12 echo $e->getMessage(),"\n";
16 } catch (UnexpectedValueException $e) {
17 echo $e->getMessage(),"\n";
21 } catch (UnexpectedValueException $e) {
22 echo $e->getMessage(),"\n";
/php-src/ext/gmp/tests/
H A Dgmp_root.phpt17 } catch (\ValueError $e) {
18 echo $e->getMessage() . \PHP_EOL;
25 } catch (\ValueError $e) {
26 echo $e->getMessage() . \PHP_EOL;
30 } catch (\ValueError $e) {
31 echo $e->getMessage() . \PHP_EOL;
H A Dconstruct.phpt14 } catch (ValueError $e) {
15 echo $e->getMessage() . "\n";
19 } catch (ValueError $e) {
20 echo $e->getMessage() . "\n";
24 } catch (ValueError $e) {
25 echo $e->getMessage() . "\n";
/php-src/ext/xsl/tests/
H A DmaxTemplateDepth_modification_validation_bypass.phpt13 } catch (ValueError $e) {
14 echo $e->getMessage(), "\n";
22 } catch (Error $e) {
23 echo $e->getMessage(), "\n";
30 } catch (Error $e) {
31 echo $e->getMessage(), "\n";
H A DmaxTemplateVars_modification_validation_bypass.phpt13 } catch (ValueError $e) {
14 echo $e->getMessage(), "\n";
22 } catch (Error $e) {
23 echo $e->getMessage(), "\n";
30 } catch (Error $e) {
31 echo $e->getMessage(), "\n";
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_encoding_field_test.phpt14 } catch (ValueError $e) {
15 echo $e->getMessage(), "\n";
22 } catch (ValueError $e) {
23 echo $e->getMessage(), "\n";
30 } catch (ValueError $e) {
31 echo $e->getMessage(), "\n";
/php-src/Zend/tests/lazy_objects/
H A Dserialize_failed_lazy_object.phpt20 } catch (Exception $e) {
21 printf("%s: %s\n", $e::class, $e->getMessage());
26 } catch (Exception $e) {
27 printf("%s: %s\n", $e::class, $e->getMessage());
/php-src/ext/com_dotnet/tests/
H A D27974.phpt21 } catch (com_exception $e) {
22 if ($e->getCode() != DISP_E_BADINDEX) {
23 throw $e;
28 } catch (Exception $e) {
29 print $e;
/php-src/ext/opcache/tests/jit/
H A Dmod_001.phpt23 } catch (Throwable $e) {
24 echo "Exception " . $e->getMessage() . "\n";
28 } catch (Throwable $e) {
29 echo "Exception (" . get_class($e) . "): " . $e->getMessage() . "\n";
/php-src/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) {
43 } catch (Exception $e) {
49 } catch (Exception $e) {
55 } catch (Exception $e) {
[all …]
/php-src/ext/random/tests/01_functions/
H A Drandom_bytes_error.phpt9 } catch (TypeError $e) {
10 echo $e->getMessage().PHP_EOL;
15 } catch (Error $e) {
16 echo $e->getMessage().PHP_EOL;
/php-src/Zend/tests/try/
H A Dtry_finally_002.phpt15 } catch (Exception $e) {
17 var_dump($e->getMessage());
18 } while ($e = $e->getPrevious());
/php-src/ext/dom/tests/modern/spec/
H A DDocument_createElement_edge_cases.phpt11 } catch (DOMException $e) {
12 echo $e->getMessage(), "\n";
16 } catch (DOMException $e) {
17 echo $e->getMessage(), "\n";
/php-src/ext/zlib/tests/
H A Dgzread_error2.phpt12 } catch (\ValueError $e) {
13 echo $e->getMessage() . \PHP_EOL;
18 } catch (\ValueError $e) {
19 echo $e->getMessage() . \PHP_EOL;
28 string(5) "e tau"

Completed in 52 milliseconds

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