$fn = $Cache_Path . '/n' . $Node . '.xml';
$store = file_get_contents( $fn );
SimpleXMLElement;
$xml = new ( $store );
$link = '';
错误:
解析错误:语法错误,意外'(',期待T_STRING或T_VARIABLE或'$'......
答案 0 :(得分:0)
你可能意味着:
$fn = $Cache_Path . '/n' . $Node . '.xml';
$store = file_get_contents( $fn );
$xml = new SimpleXMLElement ( $store );
$link = '';