1

我从 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>
4

1 回答 1

0

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

如果你想检查其他服务器上的文件,你应该使用 cUrl

于 2012-04-18T15:20:59.453 回答