Xpath cheat sheet https://devhints.io/xpath
&fbclid=IwAR0NMTTKRSXPhzSxQLJlHl-jC7qhvL_ebYD3WVsilXgNW6X08Qj-77s0EnI
ความรู้ เครื่องมือ สำหรับนักพัฒนา
รายงานความคิดเห็นสำเร็จ
โพสต์ได้ถูกเพิ่มลงในไทม์ไลน์เรียบร้อยแล้ว !
You have reached your limit of 5000 friends!
File size error: The file exceeds allowed the limit (23 MB) and can not be uploaded.
Unable to upload a file: This file type is not supported.
เราตรวจพบเนื้อหาสำหรับผู้ใหญ่ในรูปภาพที่คุณอัปโหลด ดังนั้นเราจึงปฏิเสธการอัปโหลดของคุณ
คุณต้องเป็นสมาชิกระดับ Pro ถึงจะสามารถอัปโหลด ภาพ วิดีโอ และไฟล์เสียงได้ Upgrade To Pro
TNX TNX
<?xml version="1.0" encoding="ISO-8859-1" ?>
<root>
<parent>
<child nr="1"/>
<child nr="2"/>
</parent>
</root>
<?php
$xml_src = 'test.xml';
// XPath-Querys
$parent_path = "//parent";
$next_path = "//parent/child[@nr='2']";
// Create a new DOM document
$dom = new DomDocument();
$dom->load($xml_src);
// Find the parent node
$xpath = new DomXPath($dom);
// Find parent node
$parent = $xpath->query($parent_path);
// new node will be inserted before this node
$next = $xpath->query($next_path);
// Create the new element
$element = $dom->createElement('newnode';
// Insert the new element
$parent->item(->insertBefore($element, $next->item();
echo $dom->saveXML();
?>
ลบความคิดเห็น
คุณแน่ใจว่าจะลบความคิดเห็นนี้ ?