değişken olarak url ile file_get_contents

0 Cevap php

Ben etki ile ilgili harici bir sayfasını almak için böyle bir şey kullanabilirsiniz.

<?php
    $q_pass =$_REQUEST['query_passed'];
    $fetcher = "http://www.abc.com/search?q=".$q_pass;
 $homepage = file_get_contents($fetcher);
 echo $homepage;
?>

Ben bir değişken geçti ve abc.com gelen sonuç almak istiyorsunuz. $ Fetcher sayfanın içeriğini almak için file_get_contents üzerinden geçmiş olabilir miyim? Ben bu php sayfası vurduğunuzda boş sayfa alıyorum. Ben gibi bir şey kullanın ama onun yine iyi çalışıyor

 <?php
        $fetcher = "http://www.abc.com/search?q=query";
        $homepage = file_get_contents($fetcher);
        echo $homepage;
 ?>

Ne oluyor burada? Bunun için bazı teknik bir açıklaması var mı?

0 Cevap