使用 PHP 来确定其他服务器上是否存在外部文件


Using PHP to figure out if an external file exists on other servers

我从 html 表单请求 url,然后将其发布到 php 中并运行 if 文件存在,然后使用 jquery 我返回如果找到文件它会覆盖报告消息。

看看下面的代码..唯一的问题是我无法实际获得页面找到响应,所以我认为 PHP file_exsists 命令有问题。

<?php
    header('Access-Control-Allow-Origin: *');  
    $filename = $_POST["find-one"];
    $filename2 = $_POST["find-two"];
?>
<html>
    <header>
        <title>404 Tool</title>
        <script type="text/javascript" src=".../1.7.1/jquery.min.js"></script>
        <?php
            if (file_exists($filename)) {
              echo "<script>
                      $(document).ready(function() { 
                        $('.report-one').text('File $filename is found.');
                      });
                    </script>";
            } else {
              echo "<script>
                      $(document).ready(function() { 
                        $('.report-one').text('File $filename doesn't exsist.');
                      });
                    </script>";
            }
            if (file_exists($filename)) {
              echo "<script>
                      $(document).ready(function() { 
                        $('.report-two').text('File $filename2 is found.');
                      });
                    </script>";
            } else {
              echo "<script>
                      $(document).ready(function() { 
                        $('.report-two').text('File $filename2 doesn't exsist.');
                      });
                    </script>";
            }
        ?>
    </header>
    <form method="post" action="<?php echo $PHP_SELF;?>"> 
      <input type="text" name="find-one" class="find-one"/>
      <p class="report-one">Waiting</p>
      <input type="text" name="find-two" class="find-one"/> 
      <p class="report-two">Waiting</p>
      <input type="submit" value="Search for 404's">
    </form>
  </body>
</html>

只能使用 file_exists 来检查服务器上或网络共享中的文件,而不能检查其他服务器上的文件。

如果要检查其他服务器上的文件,则应使用cUrl