-1
$fn = $Cache_Path . '/n' . $Node . '.xml';
$store = file_get_contents( $fn );
SimpleXMLElement;
$xml = new ( $store );
$link = '';

错误:

解析错误:语法错误,意外的 '(',期待 T_STRING 或 T_VARIABLE 或 '$' in.....

4

1 回答 1

0

你可能的意思是:

$fn = $Cache_Path . '/n' . $Node . '.xml';
$store = file_get_contents( $fn );
$xml = new SimpleXMLElement ( $store );
$link = '';
于 2013-02-21T14:24:24.410 回答