▼ 2008/01/10(木) simpleXMLの例外処理 エラー
http://php.mirror.camelnetwork.com/manual/ja/ref.simplexml.php
<?php
$xmlstr = ''; // empty to throw an exception
try {
$xml = new SimpleXMLElement($xmlstr);
} catch (Exception $e) {
// handle the error
echo '$xmlstr is not a valid xml string';
}
?>
▼ コメント(0件)
- TB-URL http://www.cpa-lab.com/tech/05/tb/