我制作了一个 php 脚本来查看 txt 文件的内容是否与用户输入的内容相同。我写了一个 if 语句,看看它是否正确,如果它不发送给 else。如果我不发送任何变量,那么它可以工作并显示
a is b is file is 1
但如果我输入文件和它显示的正确内容
a is test.txt b is hello file is hello 0
这是我的代码
<?php
session_destroy();
$a=htmlspecialchars($_REQUEST['a']);
$b=htmlspecialchars($_REQUEST['b']);
$my_file = file_get_contents($a);
echo "a is $a\n";
echo "b is $b\n";
echo "file is $my_file\n";
if ( $my_file == $b ) {
echo "1";
}else {
echo "0";
}
?>
有任何想法吗?