1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/date/tests/strftime_basic.phpt
Nikita Popov 4b3615a33f Deprecate strftime() and gmstrftime()
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.
2021-07-14 09:38:43 +02:00

27 lines
716 B
PHP

--TEST--
Test strftime() function : basic functionality
--FILE--
<?php
echo "*** Testing strftime() : basic functionality ***\n";
date_default_timezone_set("Asia/Calcutta");
// Initialise all required variables
$format = '%b %d %Y %H:%M:%S';
$timestamp = mktime(8, 8, 8, 8, 8, 2008);
// Calling strftime() with all possible arguments
var_dump( strftime($format, $timestamp) );
// Calling strftime() with mandatory arguments
var_dump( strftime($format) );
?>
--EXPECTF--
*** Testing strftime() : basic functionality ***
Deprecated: Function strftime() is deprecated in %s on line %d
string(20) "Aug 08 2008 08:08:08"
Deprecated: Function strftime() is deprecated in %s on line %d
string(%d) "%s %d %d %d:%d:%d"