1--TEST-- 2unset() CV 3 (unset() global variable in included file) 3--FILE-- 4<?php 5$x = "ok\n"; 6echo $x; 7include "unset.inc"; 8echo $x; 9?> 10--EXPECTF-- 11ok 12 13Warning: Undefined variable $x in %s on line %d 14