summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/var_export_error2.phpt
blob: 1c1d04dcb9dd505aa57da8b1d1c4f721520e88aa (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Test var_export() function : error conditions - recursive object
--FILE--
<?php
$obj = new stdClass;
$obj->p =& $obj;
var_export($obj, true);

?>
--EXPECTF--
Warning: var_export does not handle circular references in %s on line %d