<?php $homepage = file_get_contents('http://www.example.com/'); echo $homepage; ?>
$HTML = <<< HTML <html> <head> <title>Some Text</title> </head> <body> <p>Hello World<br/> <img src="earth.jpg" alt="picture of earth from space"/> <br> Hi <br> Hello <p> <p>Counting Elements is easy with DOM</p> </body> </html> HTML; $dom = new DOMDocument; $dom->loadHTML($HTML); $allElements = $dom->getElementsByTagName("br"); echo $allElements->length;
<?php $homepage = file_get_contents('http://www.example.com/'); $dom = new DOMDocument; $dom->loadHTML($homepage ); $allElements = $dom->getElementsByTagName("br"); echo $allElements->length; ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง