mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
4b3615a33f
These are deprecated in favor of date()/DateTime::format() (for locale-indendent formatting) and IntlDateFormatter::format() (for locale-dependent formatting). Part of https://wiki.php.net/rfc/deprecations_php_8_1.
28 lines
895 B
PHP
28 lines
895 B
PHP
--TEST--
|
|
Test gmstrftime() function : usage variation - Checking day related formats which was not supported on Windows before vc14.
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing gmstrftime() : usage variation ***\n";
|
|
|
|
// Initialise function arguments not being substituted (if any)
|
|
$timestamp = gmmktime(8, 8, 8, 8, 8, 2008);
|
|
setlocale(LC_ALL, "C");
|
|
date_default_timezone_set("Asia/Calcutta");
|
|
|
|
echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
|
|
$format = "%e";
|
|
var_dump( gmstrftime($format) );
|
|
var_dump( gmstrftime($format, $timestamp) );
|
|
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing gmstrftime() : usage variation ***
|
|
|
|
-- Testing gmstrftime() function with Day of the month as decimal single digit format --
|
|
|
|
Deprecated: Function gmstrftime() is deprecated in %s on line %d
|
|
string(2) "%A%d"
|
|
|
|
Deprecated: Function gmstrftime() is deprecated in %s on line %d
|
|
string(2) " 8"
|