mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Co-authored-by: Gina Peter Banyard <girgias@php.net> Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
--TEST--
|
|
Test gmstrftime() function : usage variation - Checking month related formats which are supported other than on Windows.
|
|
--SKIPIF--
|
|
<?php
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') {
|
|
die("skip Test is not valid for Windows");
|
|
}
|
|
?>
|
|
--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, "en_US");
|
|
date_default_timezone_set("Asia/Calcutta");
|
|
|
|
echo "\n-- Testing gmstrftime() function with Abbreviated month name format %h --\n";
|
|
$format = "%h";
|
|
var_dump( gmstrftime($format) );
|
|
var_dump( gmstrftime($format, $timestamp) );
|
|
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing gmstrftime() : usage variation ***
|
|
|
|
-- Testing gmstrftime() function with Abbreviated month name format %h --
|
|
|
|
Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in %s on line %d
|
|
string(%d) "%s"
|
|
|
|
Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in %s on line %d
|
|
string(3) "Aug"
|