1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 13:01:02 +02:00
Files
archived-php-src/ext/date/tests/DateTimeZone_extends_basic1.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

33 lines
618 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";
?>
--EXPECT--
*** Testing basic DateTimeZone inheritance() ***
-- Create an instance of DateTimeZoneExt --
-- Invoke __toString --
America/Los_Angeles