file_get_contents を使用した文字列の取得に関する問題
ページが 2 つあります
a.php
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php echo '1'; ?>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $opts = array('http'=>array('method'=>"GET",'timeout'=>3,)); $context = stream_context_create($opts); $open =file_get_contents("http://127.0.0.1/a.php", false, $context); if($open=='1'){ echo '2' }