Home
last modified time | relevance | path

Searched refs:e (Results 126 – 150 of 1566) sorted by relevance

12345678910>>...63

/PHP-7.0/ext/standard/tests/strings/
H A Dexplode_variation6.phpt16 $e = test_explode("\x00", $str, 2);
19 $e = test_explode("\x00", $str, -2);
22 $e = test_explode("fred", $str,1);
25 $e = test_explode("\x00", $str, 0);
28 $e = test_explode("\x00", $str, -1);
31 $e = test_explode("\x00", $str, 100);
35 $e = explode($delim, $string, $limit);
36 foreach ( $e as $v)
H A Dvprintf_variation19.phpt23 "% e % e % e",
39 array(2e1, 2e-1, -2e1),
44 array(2e1, 2e-1, -2e1)
82 2.000000e+1 2.000000e-1 -2.000000e+1
H A Dvprintf_variation19_64bit.phpt23 "% e % e % e",
39 array(2e1, 2e-1, -2e1),
44 array(2e1, 2e-1, -2e1)
82 2.000000e+1 2.000000e-1 -2.000000e+1
/PHP-7.0/Zend/tests/
H A Dbug63762.phpt5 $e = new Exception();
7 $ref = new ReflectionProperty($e, 'trace');
11 $ref->setValue($e, array(NULL));
13 var_dump($e->getTraceAsString());
16 $ref->setValue($e, array(array()));
17 var_dump($e->getTraceAsString());
20 $ref->setValue($e, array(array(
28 var_dump($e->getTraceAsString());
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 Djump13.phpt6 e: return;
14 catch(Exception $e) {
19 catch(Exception $e) {
21 goto e;
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 Dconstant_expressions_exceptions_002.phpt7 } catch (Error $e) {
8 …echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "…
H A Dclosure_059.phpt22 } catch (Error $e) {
23 echo "Exception: " . $e->getMessage() . "\n";
27 } catch (Error $e) {
28 echo "Exception: " . $e->getMessage() . "\n";
32 } catch (Error $e) {
33 echo "Exception: " . $e->getMessage() . "\n";
H A Drope_with_exception.phpt17 } catch (Exception $e) {
18 echo "$e\n";
26 } catch (Exception $e) {
27 echo "$e\n";
35 } catch (Exception $e) {
36 echo "$e\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";
/PHP-7.0/ext/standard/tests/random/
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-7.0/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct.phpt18 } catch (PDOException $e) {
21 $e->getMessage(),
81 $tmp = $e->getMessage();
95 $tmp = $e->getMessage();
112 $tmp = $e->getMessage();
126 $tmp = $e->getMessage();
152 $tmp = $e->getMessage();
170 $tmp = $e->getMessage();
196 } catch (PDOException $e) {
286 } catch (PDOException $e) {
[all …]
/PHP-7.0/Zend/tests/try/
H A Dtry_finally_002.phpt15 } catch (Exception $e) {
17 var_dump($e->getMessage());
18 } while ($e = $e->getPrevious());
/PHP-7.0/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";
H A Dpharfileinfo_setmetadata.phpt20 } catch (Exception $e) {
21 echo $e->getMessage(), "\n";
25 } catch (Exception $e) {
26 echo $e->getMessage(), "\n";
31 } catch (Exception $e) {
32 echo $e->getMessage(), "\n";
36 } catch (Exception $e) {
37 echo $e->getMessage(), "\n";
/PHP-7.0/Zend/tests/generators/errors/
H A Dserialize_unserialize_error.phpt12 } catch (Exception $e) {
13 echo $e, "\n\n";
18 } catch (Exception $e) {
19 echo $e, "\n\n";
24 } catch (Exception $e) {
25 echo $e;
/PHP-7.0/Zend/tests/type_declarations/
H A Dinternal_function_strict_mode.phpt10 } catch (TypeError $e) {
11 echo "*** Caught " . $e->getMessage() . PHP_EOL;
17 } catch (TypeError $e) {
18 echo "*** Caught " . $e->getMessage() . PHP_EOL;
24 } catch (TypeError $e) {
25 echo "*** Caught " . $e->getMessage() . PHP_EOL;
/PHP-7.0/ext/spl/tests/
H A DarrayObject_setIteratorClass_error1.phpt11 } catch (Exception $e) {
12 var_dump($e->getMessage());
21 } catch (Exception $e) {
22 var_dump($e->getMessage());
31 } catch (TypeError $e) {
32 var_dump($e->getMessage());
40 } catch (TypeError $e) {
41 var_dump($e->getMessage());
H A Dfixedarray_001.phpt9 } catch (RuntimeException $e) {
10 echo "Exception: ".$e->getMessage()."\n";
14 } catch (RuntimeException $e) {
15 echo "Exception: ".$e->getMessage()."\n";
19 } catch (RuntimeException $e) {
20 echo "Exception: ".$e->getMessage()."\n";
/PHP-7.0/ext/standard/tests/array/
H A Darray_chunk2.phpt5 $input_array = array('a', 'b', 'c', 'd', 'e');
45 string(1) "e"
72 string(1) "e"
93 string(1) "e"
114 string(1) "e"
129 string(1) "e"
144 string(1) "e"
/PHP-7.0/ext/date/tests/
H A Dbug40743.phpt7 echo $dt->format('T e Z'), "\n";
13 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
16 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
20 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
23 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
26 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
29 echo $dt->format(DATE_RFC822 . " e T O U"), "\n";
/PHP-7.0/ext/standard/tests/general_functions/
H A Dbug31190.phpt13 } catch (Exception $e) {
14 echo $e->getMessage();
19 } catch (Exception $e) {
20 echo $e->getMessage();
/PHP-7.0/ext/snmp/tests/
H A Dsnmp-object-error.phpt19 } catch (TypeError $e) {
20 print $e->getMessage() . "\n";
24 } catch (TypeError $e) {
29 } catch (TypeError $e) {
34 } catch (Exception $e) {
42 } catch (SNMPException $e) {
43 var_dump($e->getCode());
44 var_dump($e->getMessage());
49 } catch (SNMPException $e) {
50 var_dump($e->getCode());
[all …]
/PHP-7.0/sapi/phpdbg/tests/
H A Dexceptions_002.phpt14 00017: } catch (\Exception $e) {
15 00018: var_dump($e);
37 } catch (\Exception $e) {
38 var_dump($e);
48 } catch (\Exception $e) {
49 var_dump($e);

Completed in 43 milliseconds

12345678910>>...63