/php-src/ext/date/tests/ |
H A D | bug48276.phpt | 2 Bug #48276 (date("Y") prints wrong year on Big Endian machines) 7 var_dump(date("Y", 1245623227));
|
H A D | bug33536.phpt | 7 print date("Y-m-d", strtotime("monkey")) ."\n"; 8 print date("Y-m-d", false) ."\n";
|
H A D | bug51934.phpt | 7 echo date("Y-m-d H:i:s", strtotime("2010-05-27 19:18 4 Sunday ago")), "\n"; 8 echo date("Y-m-d H:i:s", strtotime("2010-05-27 19:18 4 Sundays ago")), "\n";
|
H A D | bug33415-1.phpt | 10 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n"; 12 print "result=".date("l Y-m-d H:i:s T I", $strtotime_tstamp)."\n"; 18 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n"; 20 print "result=".date("l Y-m-d H:i:s T I", $strtotime_tstamp)."\n";
|
H A D | bug33532.phpt | 21 print "strftime " . strftime("%r %B%e %Y %Z %z", $tStamp) . "\n"; 22 print "datestr " . date ("H:i:s A F j Y T", $tStamp) . "\n"; 30 print "strftime " . strftime("%r %B%e %Y %Z %z", $tStamp) . "\n"; 31 print "datestr " . date ("H:i:s A F j Y T", $tStamp) . "\n";
|
H A D | DateTime_fix_createFromFormat.phpt | 18 $fromFormat = DateTime::createFromFormat( "D., M# j, Y g:iA", $string ); 20 echo "Format method: " . $orig->format("D., M. j, Y g:iA") . "\n"; 21 echo "createFromFormat method: " . $fromFormat->format("D., M. j, Y g:iA") . "\n";
|
H A D | date-set-timestamp.phpt | 7 echo $d->format( "Y-m-d H:i e\n" ); 11 echo $d->format( "Y-m-d H:i e\n" );
|
H A D | bug50475.phpt | 11 var_dump($date->format('Y-m-d H:i:s')); 14 var_dump($date->format('Y-m-d H:i:s'));
|
H A D | bug33563.phpt | 6 $strCurrDate = date('Y-m-d H:i:s',strtotime('2005-06-30 21:04:23')); 7 $strMonAfter = date('Y-m-d H:i:s',strtotime('+1 month',strtotime($strCurrDate)));
|
H A D | date_create-2.phpt | 7 echo $d->format('D, d M Y H:i:s T'), "\n"; 10 echo $d->format('D, d M Y H:i:s T'), "\n";
|
H A D | date_modify-2.phpt | 7 echo date_format($d, 'D, d M Y H:i:s T'), "\n"; 9 echo date_format($d, 'D, d M Y H:i:s T'), "\n";
|
/php-src/Zend/tests/property_hooks/ |
H A D | set_value_parameter_type_variance_006.phpt | 7 interface Y extends X {} 10 public Y $prop {
|
H A D | bug006.phpt | 6 abstract class Y { 13 class X extends Y {
|
H A D | set_value_parameter_type_variance_003.phpt | 8 set(Y $prop) {} 13 interface Y {}
|
/php-src/Zend/tests/type_declarations/variance/ |
H A D | class_order_autoload_error8.phpt | 18 function m2(): Y {} 25 class Y extends B {} 26 var_dump(new Y);
|
H A D | class_order_autoload_error3.phpt | 13 public function method(): Y {} 19 } else if ($class == 'Y') { 20 class Y extends X {
|
H A D | property_types_early_bind.phpt | 7 class_alias('X', 'Y'); 13 public Y $prop;
|
/php-src/Zend/tests/namespaces/ |
H A D | ns_065.phpt | 5 use X\Y as test, X\Z as test2; 13 X\Y\foo
|
H A D | ns_020.phpt | 6 use X as Y; 12 Y\foo();
|
/php-src/Zend/tests/type_declarations/intersection_types/variance/ |
H A D | valid6.phpt | 7 interface Y {} 14 public function test(): X&Y {}
|
/php-src/Zend/tests/ |
H A D | class_constants_007.phpt | 6 const X = ' ' . self::Y; 7 const Y = ' ';
|
H A D | get_class_methods_003.phpt | 22 class Y extends X implements I { 30 var_dump(get_class_methods('Y')); 37 new Y;
|
H A D | coalesce_assign_optimization.phpt | 6 $a[X] ??= Y; 13 define('Y', 2);
|
/php-src/Zend/tests/type_declarations/dnf_types/variance/ |
H A D | valid6.phpt | 7 interface Y {} 14 public function test(): (X&Y)|Z {}
|
/php-src/Zend/tests/type_declarations/ |
H A D | typed_class_constants_multiple_constants.phpt | 7 public const int X = 1, Y = "foo"; 12 Fatal error: Cannot use string as value for class constant Test::Y of type int in %s on line %d
|