Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$fn = $Cache_Path . '/n' . $Node . '.xml'; $store = file_get_contents( $fn ); SimpleXMLElement; $xml = new ( $store ); $link = '';
エラー:
解析エラー: 構文エラー、予期しない '('、予期しない T_STRING または T_VARIABLE または '$' in.....
あなたはおそらく意味します:
$fn = $Cache_Path . '/n' . $Node . '.xml'; $store = file_get_contents( $fn ); $xml = new SimpleXMLElement ( $store ); $link = '';