Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug60569.phpt

--TEST--
Bug #60569 (Nullbyte truncates Exception $message.)
--FILE--
<?php
try {
	$msg = "Some error \x00 message";
	throw new Exception($msg);
} catch(Exception $e) {
	var_dump($e->getMessage(), $msg);
}
?>
--EXPECT--
string(20) "Some error  message"
string(20) "Some error  message"