2
我真的需要使用命名空間的幫助。我如何獲得以下代碼才能正常工作?使用SimpleXML處理命名空間
<?php
$mytv = simplexml_load_string(
'<?xml version="1.0" encoding="utf-8"?>
<mytv>
<mytv:channelone>
<mytv:description>comedy that makes you laugh</mytv:description>
</mytv:channelone>
</mytv>'
);
foreach ($mytv as $mytv1)
{
echo 'description: ', $mytv1->children('mytv', true)->channelone->description;
}
?>
我想要做的就是獲取名稱元素內的內容。
太棒了:)絕對要把這個練習和學習不同的方式來使用它。 – yanike