This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class upload{ | |
public $file ; | |
public $error ; | |
public $messge_error ; | |
public $extension ; | |
protected $dirold ; | |
private $new_dir ; | |
const welecome = 'welecome here in any time >>>>' ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$pageURL = "http://www.google.com"; // تقدر تستخدم اى موقع لجلب البيانات منه | |
require("simple_html_dom.php"); // | |
foreach($html->find('a[class=xyz]') as $element){ // a[class=xyz] قم بتغيير التاج ،بالاضافه الى اسم الكلس على حسب نوع الموقع | |
echo $element->href . '<br>'; // عرض نتائج العمليه | |
} //$element كائن يحتوي على جميع سمات جميع العناصر المطابقة وفقًا لمنتقيك ، وفعل ما تريده به. | |
// simple_html_dom.php: يجب تحميل الملف المساعد قبل الاجراء السابق حتى تقوم باستدعائه عن العمليه | |
?> |