Home
last modified time | relevance | path

Searched refs:PHP_EOL (Results 1 – 25 of 213) sorted by relevance

123456789

/PHP-7.2/Zend/tests/grammar/
H A Dsemi_reserved_003.phpt106 echo $obj->and, PHP_EOL;
113 echo $obj->new, PHP_EOL;
114 echo $obj->or, PHP_EOL;
115 echo $obj->xor, PHP_EOL;
116 echo $obj->try, PHP_EOL;
117 echo $obj->use, PHP_EOL;
118 echo $obj->var, PHP_EOL;
139 echo $obj->if, PHP_EOL;
142 echo $obj->for, PHP_EOL;
146 echo $obj->do, PHP_EOL;
[all …]
H A Dsemi_reserved_004.phpt104 echo Obj::$and, PHP_EOL;
111 echo Obj::$new, PHP_EOL;
112 echo Obj::$or, PHP_EOL;
113 echo Obj::$xor, PHP_EOL;
114 echo Obj::$try, PHP_EOL;
115 echo Obj::$use, PHP_EOL;
116 echo Obj::$var, PHP_EOL;
137 echo Obj::$if, PHP_EOL;
140 echo Obj::$for, PHP_EOL;
144 echo Obj::$do, PHP_EOL;
[all …]
H A Dsemi_reserved_005.phpt101 echo Obj::AND, PHP_EOL;
108 echo Obj::NEW, PHP_EOL;
109 echo Obj::OR, PHP_EOL;
110 echo Obj::XOR, PHP_EOL;
111 echo Obj::TRY, PHP_EOL;
112 echo Obj::USE, PHP_EOL;
113 echo Obj::VAR, PHP_EOL;
134 echo Obj::IF, PHP_EOL;
137 echo Obj::FOR, PHP_EOL;
141 echo Obj::DO, PHP_EOL;
[all …]
H A Dsemi_reserved_001.phpt8 function empty(){ echo __METHOD__, PHP_EOL; }
9 function callable(){ echo __METHOD__, PHP_EOL; }
10 function class(){ echo __METHOD__, PHP_EOL; }
11 function trait(){ echo __METHOD__, PHP_EOL; }
12 function extends(){ echo __METHOD__, PHP_EOL; }
14 function static(){ echo __METHOD__, PHP_EOL; }
16 function final(){ echo __METHOD__, PHP_EOL; }
20 function const(){ echo __METHOD__, PHP_EOL; }
26 function and(){ echo __METHOD__, PHP_EOL; }
33 function new(){ echo __METHOD__, PHP_EOL; }
[all …]
H A Dsemi_reserved_002.phpt8 static function empty(){ echo __METHOD__, PHP_EOL; }
9 static function callable(){ echo __METHOD__, PHP_EOL; }
10 static function class(){ echo __METHOD__, PHP_EOL; }
11 static function trait(){ echo __METHOD__, PHP_EOL; }
12 static function extends(){ echo __METHOD__, PHP_EOL; }
14 static function static(){ echo __METHOD__, PHP_EOL; }
16 static function final(){ echo __METHOD__, PHP_EOL; }
20 static function const(){ echo __METHOD__, PHP_EOL; }
26 static function and(){ echo __METHOD__, PHP_EOL; }
33 static function new(){ echo __METHOD__, PHP_EOL; }
[all …]
H A Dsemi_reserved_008.phpt8 public static function list(){ echo __METHOD__, PHP_EOL; }
9 public static function /* comment */ catch(){ echo __METHOD__, PHP_EOL; }
11 throw(){ echo __METHOD__, PHP_EOL; }
14 self(){ echo __METHOD__, PHP_EOL; }
19 public static function exit(){ echo __METHOD__, PHP_EOL; }
20 protected static function try(){ echo __METHOD__, PHP_EOL; }
63 echo PHP_EOL, "Done", PHP_EOL;
H A Dsemi_reserved_007.phpt10 echo "From ", __METHOD__, ":", PHP_EOL;
11 echo self::self, PHP_EOL;
12 echo self::parent, PHP_EOL;
19 echo "From ", __METHOD__, ":", PHP_EOL;
20 echo parent::self, PHP_EOL;
21 echo parent::parent, PHP_EOL;
H A Dregression_006.phpt14 echo Obj::DECLARE, PHP_EOL;
15 echo Obj::RETURN, PHP_EOL;
16 echo Obj::FUNCTION, PHP_EOL;
17 echo Obj::USE, PHP_EOL;
20 USE, PHP_EOL;
H A Dsemi_reserved_010.phpt8 public static function insteadof(){ echo __METHOD__, PHP_EOL; }
13 public static function insteadof(){ echo __METHOD__, PHP_EOL; }
26 echo PHP_EOL, "Done", PHP_EOL;
/PHP-7.2/tests/basic/
H A Dprecision.phpt10 echo "INI".PHP_EOL;
15 echo "OUTPUTS".PHP_EOL;
21 echo "INI".PHP_EOL;
26 echo "OUTPUTS".PHP_EOL;
31 echo "INI".PHP_EOL;
36 echo "OUTPUTS".PHP_EOL;
41 echo "INI".PHP_EOL;
46 echo "OUTPUTS".PHP_EOL;
51 echo "INI".PHP_EOL;
61 echo "INI".PHP_EOL;
[all …]
/PHP-7.2/ext/standard/tests/general_functions/
H A Dvar_export_bug66179.phpt7 echo PHP_EOL;
9 echo PHP_EOL;
11 echo PHP_EOL;
13 echo PHP_EOL;
15 echo PHP_EOL;
17 echo PHP_EOL;
19 echo PHP_EOL;
/PHP-7.2/Zend/tests/function_arguments/
H A Dargument_count_incorrect_userland_strict.phpt10 echo get_class($e) . PHP_EOL;
11 echo $e->getMessage() . PHP_EOL;
18 echo get_class($e) . PHP_EOL;
19 echo $e->getMessage() . PHP_EOL;
27 echo get_class($e) . PHP_EOL;
28 echo $e->getMessage() . PHP_EOL;
34 echo get_class($e) . PHP_EOL;
35 echo $e->getMessage() . PHP_EOL;
41 echo get_class($e) . PHP_EOL;
42 echo $e->getMessage() . PHP_EOL;
H A Dargument_count_incorrect_userland.phpt9 echo get_class($e) . PHP_EOL;
10 echo $e->getMessage() . PHP_EOL;
17 echo get_class($e) . PHP_EOL;
18 echo $e->getMessage() . PHP_EOL;
26 echo get_class($e) . PHP_EOL;
27 echo $e->getMessage() . PHP_EOL;
33 echo get_class($e) . PHP_EOL;
34 echo $e->getMessage() . PHP_EOL;
/PHP-7.2/ext/standard/tests/math/
H A Dmt_rand_value.phpt9 echo mt_rand().PHP_EOL;
11 echo PHP_EOL;
17 echo $x.PHP_EOL;
18 echo PHP_EOL;
23 echo mt_rand().PHP_EOL;
25 echo PHP_EOL;
31 echo $x.PHP_EOL;
/PHP-7.2/ext/pdo_oci/tests/
H A Dbug60994.phpt30 echo PHP_EOL, 'Test 1: j', PHP_EOL;
43 echo 'beg of stream1 is ', $start1, PHP_EOL;
44 echo 'end of stream1 is ', $ending1, PHP_EOL;
47 echo PHP_EOL, 'Test 2: £', PHP_EOL;
60 echo 'beg of stream2 is ', $start2, PHP_EOL;
61 echo 'end of stream2 is ', $ending2, PHP_EOL;
64 echo PHP_EOL, 'Test 3: Җ', PHP_EOL;
77 echo 'beg of stream3 is ', $start3, PHP_EOL;
78 echo 'end of stream3 is ', $ending3, PHP_EOL;
81 echo PHP_EOL, 'Test 4: の', PHP_EOL;
[all …]
/PHP-7.2/ext/spl/tests/
H A Dspl_pq_top_basic.phpt17 echo "EXTR DEFAULT",PHP_EOL;
18 echo "value: ",$priorityQueue->top(),PHP_EOL;
23 echo "EXTR_PRIORITY",PHP_EOL;
24 echo "priority: ",$priorityQueue->top(),PHP_EOL;
27 echo "EXTR_BOTH",PHP_EOL;
30 echo "EXTR_DATA",PHP_EOL;
32 echo "value: ",$priorityQueue->top(),PHP_EOL;
/PHP-7.2/Zend/tests/closures/
H A Dclosure_from_callable_basic.phpt10 echo $fn(" OK".PHP_EOL);
14 echo $fn(" OK".PHP_EOL);
18 echo $fn(" OK".PHP_EOL);
22 echo $fn(" OK".PHP_EOL);
26 echo $fn(" OK".PHP_EOL);
30 echo $fn(" OK".PHP_EOL);
34 echo $fn(" OK".PHP_EOL);
38 echo $fn(" OK".PHP_EOL);
42 echo $fn(" OK".PHP_EOL);
47 echo $fn(" OK".PHP_EOL);
[all …]
/PHP-7.2/ext/reflection/tests/
H A Dbug66430.phpt16 echo "alpha.bravo: ", $alpha->bravo().PHP_EOL;
25 echo "reflection of alpha.bravo: ", $method->invoke($alpha).PHP_EOL;
26 echo "closure of alpha.bravo: ", $closure().PHP_EOL;
27 echo "call_user_func of closure: ", call_user_func($closure).PHP_EOL;
28 echo PHP_EOL;
29 echo "closure cl of c(alpha.bravo): ", get_class($reflectionC->getClosureThis()).PHP_EOL;
30 echo "scope cl of c(alpha.bravo): ", $reflectionC->getClosureScopeClass()->getName().PHP_EOL;
31 echo "reflection of c(alpha.bravo): ", $reflectionC->invoke().PHP_EOL;
H A DReflectionFunction_construct.001.phpt11 echo "exception not thrown.".PHP_EOL;
13 echo "Ok - ".$re->getMessage().PHP_EOL;
18 echo $e->getMessage().PHP_EOL;
23 echo "Ok - ".$re->getMessage().PHP_EOL;
28 echo "Ok - ".$re->getMessage().PHP_EOL;
33 echo "Ok - ".$re->getMessage().PHP_EOL;
/PHP-7.2/ext/calendar/tests/
H A Dunixtojd_error1.phpt13 var_dump(unixtojd(-1)) . PHP_EOL;
14 var_dump(unixtojd(false)) . PHP_EOL;
15 var_dump(unixtojd(null)) . PHP_EOL;
16 var_dump(unixtojd(time())) . PHP_EOL;
17 var_dump(unixtojd(PHP_INT_MAX)) . PHP_EOL;
/PHP-7.2/ext/oci8/tests/
H A Dbug70700.phpt35 echo PHP_EOL, 'Test 1: j', PHP_EOL;
62 echo 'beg of stream1a is ', $start1a, PHP_EOL;
63 echo 'end of stream1a is ', $ending1a, PHP_EOL;
66 echo PHP_EOL, 'Test 2: £', PHP_EOL;
93 echo 'beg of stream2a is ', $start2a, PHP_EOL;
94 echo 'end of stream2a is ', $ending2a, PHP_EOL;
97 echo PHP_EOL, 'Test 3: Җ', PHP_EOL;
124 echo 'beg of stream3a is ', $start3a, PHP_EOL;
125 echo 'end of stream3a is ', $ending3a, PHP_EOL;
128 echo PHP_EOL, 'Test 4: の', PHP_EOL;
[all …]
/PHP-7.2/ext/date/tests/
H A Dbug45543.phpt16 echo $d1->format(DATE_ISO8601), PHP_EOL;
17 echo $d2->format(DATE_ISO8601), PHP_EOL;
20 echo $d1->format(DATE_ISO8601), PHP_EOL;
21 echo $d2->format(DATE_ISO8601), PHP_EOL;
22 echo PHP_EOL;
/PHP-7.2/Zend/tests/type_declarations/
H A Dinternal_function_strict_mode.phpt7 echo "*** Trying Ord With Integer" . PHP_EOL;
11 echo "*** Caught " . $e->getMessage() . PHP_EOL;
14 echo "*** Trying Array Map With Invalid Callback" . PHP_EOL;
18 echo "*** Caught " . $e->getMessage() . PHP_EOL;
21 echo "*** Trying Strlen With Float" . PHP_EOL;
25 echo "*** Caught " . $e->getMessage() . PHP_EOL;
/PHP-7.2/Zend/tests/try/
H A Dtry_multicatch_006.phpt8 echo 'TRY' . PHP_EOL;
11 echo get_class($e) . PHP_EOL;
13 echo get_class($e) . PHP_EOL;
15 echo 'FINALLY' . PHP_EOL;
H A Dtry_multicatch_007.phpt8 echo 'TRY' . PHP_EOL;
11 echo get_class($e) . PHP_EOL;
13 echo get_class($e) . PHP_EOL;
15 echo 'FINALLY' . PHP_EOL;

Completed in 48 milliseconds

123456789