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/unset_cast_deprecated.phpt

--TEST--
The (unset) cast is deprecated
--FILE--
<?php

$x = 1;
var_dump((unset) $x);
var_dump($x);

?>
--EXPECTF--
Deprecated: The (unset) cast is deprecated in %s on line %d
NULL
int(1)