PHP
ユーザ関数で呼び出しを簡略化2015/06/10
<?php echo str_replace("\t"," ", htmlspecialchars(@file_get_contents("xml.xml"))) ?>
これでは長すぎて面倒だから関数にしてみよう。
関数定義
<?php
function sorce($file){
echo str_replace("\t", " ", htmlspecialchars(@file_get_contents($file)));
}
?>
呼び出し
<?php sorce("xml.xml"); ?>
ここのサイトではさらに<pre></pre>で挟むようにしています。
<root> <element>elm</element> </root>