php-src/ext/date/tests/bug70277.phpt
2023-02-08 10:27:33 +00:00

20 lines
576 B
PHP

--TEST--
Bug #70277 (new DateTimeZone($foo) is ignoring text after null byte)
--FILE--
<?php
$timezone = "Europe/Zurich\0Foo";
try {
var_dump(timezone_open($timezone));
} catch (\ValueError $e) {
echo $e::class, ': ', $e->getMessage(), "\n";
}
try {
var_dump(new DateTimeZone($timezone));
} catch (\ValueError $e) {
echo $e::class, ': ', $e->getMessage(), "\n";
}
?>
--EXPECT--
ValueError: timezone_open(): Argument #1 ($timezone) must not contain any null bytes
ValueError: DateTimeZone::__construct(): Argument #1 ($timezone) must not contain any null bytes