0

我有一个表格,它有两个值。一个是 .txt 文件,其中一些链接被硬编码的文件和一个带有 url 的文本字段。当我按下提交时,它会使用该 url 并检查 *.txt 文件中的每个链接。希望你明白我在说什么,如果没有,请评论我会澄清它。现在我有问题。在链接所在的文件不在我的服务器上之前,我的代码不起作用。我不知道如何处理这个问题。我已经完成了搜索,我也尝试了 mysql,但这对我来说不行。我的脚本是这样的:

Enter your file :<input type="file" name="ufile" />
Enter your site name :<input type="text" name="utext" />
<input type="submit" value="Check" />

现在,我的 php 脚本是这样的:

$needle = $_POST['utext'];
$file = $_FILES['ufile'];
$new = file($file, FILE_IGNORE_EMPTY_LINES | FILE_SKIP_EMPTY_LINES);
$new = array_map('trim', $new);
echo 'Total entries are: '.count($new).'<br />';
$found = array();
$notfound = array();
foreach ($new as $check) {
    echo "<table border='1'><tr>";
    echo "<td>Processing</td> <td>", $check,"</td></tr>";
    $a = file_get_contents($check);
    if (strpos($a, $needle)) {
        echo "<td><font color='green'>Found:</font></td>";
        $found[] = $check;
    } else {
        echo "<td><font color='red'>Not Found</font></td>";
        $notfound[] = $check;
    }
    echo "</tr></table>";
}
echo "Matches ".count($found)."<br />";
echo "Not Matched ".count($notfound);
4

1 回答 1

2

您是否有任何理由从未阅读过有关PHP 如何处理上传的文档?这将清楚地表明这$_FILES['ufile']array,因此您的代码无法工作。如果你真的想在不理解它的情况下继续编写代码,那么替换:

$file = $_FILES['ufile'];

$file = $_FILES['ufile']['tmp_name'];
于 2012-12-02T18:20:04.587 回答