Arkadaşlar bir sitede aşağıdaki gibi bir kod bulunuyor.
<iframe class="test" data-src="link1" scrolling="no" allowfullscreen="true"></iframe>
Link1 sürekli değişmektedir. Ben siteden gidip bunu çekeceğime bot ile çekip bir değişkene yazdırmak istiyorum. Aşağıdaki gibi
$site = $_GET['site'];
$html = file_get_contents("$site");
preg_match_all(
'/(http.*)/',
$html,
$posts, // will contain the article data
PREG_SET_ORDER // formats data into an array of posts
);
foreach ($posts as $post) {
$link = $posts[0][0];
echo $link;
bunun gibi.