これが私が取り組んでいるXMLファイルです:
<list>
<activity>swimming</activity>
<activity>running</activity>
<activity>soccer</activity>
</list>
index.php、チェックボックス付きのアクティビティのリストを表示するページ、チェックされたアクティビティを削除するためのボタン、および新しいアクティビティを追加するためのフィールド:
<html>
<head></head>
<body>
<?php
$xmldoc = new DOMDocument();
$xmldoc->load('sample.xml', LIBXML_NOBLANKS);
$count = 0;
$activities = $xmldoc->firstChild->firstChild;
//prints the list of activities, with checkboxes on the left for each item
//the $count variable is the id to each entry
if($activities!=null){
echo '<form name=\'erase\' action=\'delete.php\' method=\'post\'>' . "\n";
while($activities!=null){
$count++;
echo " <input type=\"checkbox\" name=\"activity[]\" value=\"$count\"/>";
echo ' '.$activities->textContent.'<br/>'."\n";
$activities = $activities->nextSibling;
}
echo ' <input type=\'submit\' value=\'erase selected\'>';
echo '</form>';
}
?>
//section used for inserting new entries. this feature is working as expected.
<form name='input' action='insert.php' method='post'>
insert activity:
<input type='text name='activity'/>
<input type='submit' value='send'/>
<br/>
</form>
</body>
</html>
期待どおりに機能していないdelete.php:
<?php
$xmldoc = new DOMDocument();
$xmldoc->load('sample.xml', LIBXML_NOBLANKS);
$atvID = $_POST['activity'];
foreach($atvID as $id){
$delnode = $xmldoc->getElementsByTagName('activity');
$xmldoc->firstChild->removeChild($delnode->item($id));
}
$xmldoc->save('sample.xml');
?>
ハードコードされた任意のIDを使用して、ループなしで削除ルーチンをテストしましたが、機能しました。$ atvID配列もテストしたところ、選択したID番号が正しく出力されました。ループ内にある場合、出力されるエラーは次のとおりです。
キャッチ可能な致命的なエラー:DOMNode :: removeChild()に渡される引数1は、DOMNodeのインスタンスである必要があり、9行目の/directorypath/delete.phpでnullが指定されています。
私のコードの何が問題になっていますか?