1--TEST-- 2Test var_export() function : error conditions - recursive array 3--FILE-- 4<?php 5/* Prototype : mixed var_export(mixed var [, bool return]) 6 * Description: Outputs or returns a string representation of a variable 7 * Source code: ext/standard/var.c 8 * Alias to functions: 9 */ 10 11$a[] =& $a; 12var_export($a, true); 13 14?> 15===DONE=== 16--EXPECTF-- 17Warning: var_export does not handle circular references in %s on line 9 18===DONE=== 19