Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 1772) sorted by path

12345678910>>...71

/PHP-7.4/
H A DCODING_STANDARDS.md46 doesn't have to be recalculated with `strlen()` (e.g. `php_addslashes()`).
140 meaning (e.g. `for (i=0; i<100; i++) ...`).
169 name of the "parent set" (e.g. the name of the extension) if no namespaces
172 long form (e.g. HTTP or URL). Abbreviations start with a capital letter
230 1. Never use C++ style comments (i.e. `//` comment). Always use C-style comments
H A DCONTRIBUTING.md351 (i.e. 7.3) and then get merged up to all other branches. All security fixes
352 should go to the lowest security fixes branch (i.e 7.2). If a change is not
353 needed for later branches (i.e. fixes for features which were dropped from
H A DUPGRADING328 checking whether the statement is read-only, i.e. if it doesn't modify
365 in conjunction with the spread operator, e.g. array_merge(...$arrays).
397 $a ? $b : $c ? $d : $e
399 ($a ? $b : $c) ? $d : $e
401 $a ? $b : ($c ? $d : $e)
624 a single question mark to the database and e.g. use the PostgreSQL JSON key
636 Use corresponding constants instead (e.g. ReflectionMethod::IS_PUBLIC).
H A DUPGRADING.INTERNALS8 e. php_win32_error_to_msg() memory management
67 e. Pointers returned by php_win32_error_to_msg() have to be freed using
/PHP-7.4/Zend/
H A Dbench.php310 for ($e=0; $e<$n; $e++)
/PHP-7.4/Zend/tests/
H A D001.phpt22 } catch (Throwable $e) {
23 echo "Exception: " . $e->getMessage() . "\n";
31 } catch (Throwable $e) {
32 echo "Exception: " . $e->getMessage() . "\n";
H A D002.phpt28 } catch (Throwable $e) {
29 echo "Exception: " . $e->getMessage() . "\n";
36 } catch (Throwable $e) {
37 echo "Exception: " . $e->getMessage() . "\n";
H A D003.phpt23 } catch (Throwable $e) {
24 echo "Exception: " . $e->getMessage() . "\n";
31 } catch (Throwable $e) {
32 echo "Exception: " . $e->getMessage() . "\n";
H A D021.phpt20 $e = array();
22 $e['e'] = 'e';
23 $e['e'] = $e['e'] ?: 'e';
24 print_r($e);
36 [e] => e
H A DErrorException_getSeverity.phpt17 } catch(ErrorException $e) {
29 } catch(ErrorException $e) {
41 } catch(ErrorException $e) {
53 } catch(ErrorException $e) {
65 } catch(ErrorException $e) {
77 } catch(ErrorException $e) {
89 } catch(ErrorException $e) {
101 } catch(ErrorException $e) {
113 } catch(ErrorException $e) {
125 } catch(ErrorException $e) {
[all …]
H A Dadd_002.phpt13 } catch (Error $e) {
14 echo "\nException: " . $e->getMessage() . "\n";
H A Dadd_003.phpt13 } catch (Error $e) {
14 echo "\nException: " . $e->getMessage() . "\n";
H A Dadd_004.phpt10 } catch (Error $e) {
11 echo "\nException: " . $e->getMessage() . "\n";
H A Dadd_007.phpt12 } catch (Error $e) {
13 echo "\nException: " . $e->getMessage() . "\n";
H A Danonymous_func_003.phpt9 } catch (Exception $e) {
10 var_dump($e->getMessage() == 'test');
H A Dassign_coalesce_002.phpt23 } catch (Exception $e) {
24 echo $e->getMessage(), "\n";
49 } catch (Exception $e) {
50 echo $e->getMessage(), "\n";
68 } catch (Exception $e) {
69 echo $e->getMessage(), "\n";
H A Dassign_to_obj_002.phpt8 } catch (Error $e) { echo $e->getMessage(), "\n"; }
H A Dbug26166.phpt43 } catch (Error $e) {
44 echo $e->getMessage(), "\n";
59 } catch (Exception $e) {
60 echo $e->getMessage(), "\n";
H A Dbug26229.phpt21 catch(Exception $e)
23 echo $e->getMessage() . "\n";
H A Dbug26698.phpt29 catch(Exception $e)
31 echo 'Caught: '.$e->getMessage()."\n";
42 catch(Exception $e)
44 echo 'Caught: '.$e->getMessage()."\n";
55 catch(Exception $e)
57 echo 'Caught: '.$e->getMessage()."\n";
H A Dbug29368_2.phpt14 } catch (Throwable $e) {
15 echo $e->getMessage() . "\n";
H A Dbug30161.phpt18 } catch(Exception $e) {
/PHP-7.4/Zend/tests/arg_unpack/
H A Dtraversable_throwing_exception.phpt24 } catch (Exception $e) { var_dump($e->getMessage()); }
28 } catch (Exception $e) { var_dump($e->getMessage()); }
/PHP-7.4/Zend/tests/arrow_functions/
H A D006.phpt19 } catch (TypeError $e) {
20 echo $e->getMessage(), "\n";
27 } catch (TypeError $e) {
28 echo $e->getMessage(), "\n";
/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt11 unset($e);
113 } catch (MyException $e) {
115 } catch (Exception $e) {
153 unset($e);
264 } catch (MyException $e) {
266 } catch (Exception $e) {

Completed in 61 milliseconds

12345678910>>...71