1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00
Files
archived-php-src/ext/date/tests/DateTimeZone_extends_basic1.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

34 lines
642 B
PHP

--TEST--
Test DateTimeZone class inheritance
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("Europe/London");
echo "*** Testing basic DateTimeZone inheritance() ***\n";
class DateTimeZoneExt extends DateTimeZone
{
public function __toString()
{
return parent::getName();
}
}
echo "\n-- Create an instance of DateTimeZoneExt --\n";
$d = new DateTimeZoneExt("America/Los_Angeles");
echo "\n-- Invoke __toString --\n";
echo $d . "\n";
?>
===DONE===
--EXPECT--
*** Testing basic DateTimeZone inheritance() ***
-- Create an instance of DateTimeZoneExt --
-- Invoke __toString --
America/Los_Angeles
===DONE===