2017年1月11日水曜日

PHP4でsimplexml_load_file関数を使うには

simplexml_load_file関数はPHP4で使えなかったので、以下を参考にしたところすぐにできました。
助かります。

参考
PHP4 でsimplexmlを使う方法 | みる米技術部
http://tech.mirukome.com/php4-%E3%81%A7simplexml%E3%82%92%E4%BD%BF%E3%81%86%E6%96%B9%E6%B3%95/


手順

1.simplexml.class.php を以下のサイトからダウンロード
http://www.phpclasses.org/package/4484-PHP-Load-XML-files-in-PHP-4-like-SimpleXML-extension.html
※ダウンロードには上記サイトでユーザー登録が必要です。

2.本体のPHPで1のファイルを読み込み

require_once("simplexml.class.php");

3.本体のPHPにファンクションを追加

if(!function_exists("simplexml_load_file")){
function simplexml_load_file($file){
$sx = new simplexml;
return $sx->xml_load_file($file);
}
}

以上でPHP5のsimplexmlと同様に呼び出して使えました!!

0 件のコメント:

コメントを投稿