这段代码出了什么问题?的SimpleXMLElement

时间:2013-02-21 14:21:12

标签: simplexml php

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

错误:

  

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

1 个答案:

答案 0 :(得分:0)

你可能意味着:

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