-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 に答える