我对 php 很陌生,我试图编写这个函数。现在看来该功能未定义。当我打开 php 文件并且尝试使用控制台运行它时,什么也没有发生。它给出了一个错误——
contentcheck('ex1.php','Bajestani')
ReferenceError:未定义内容检查
代码如下。
<?php
if(contentcheck('ex1.php','Bajestani')===true)
echo 'Got it';
function contentcheck($filename,$phrase)
{
$content = shell_exec('C:\xampp\htdocs\docman\pdftotext '.$filename.' -');
if (strpos($content,$phrase) !== false)
{
return true;
}
else
return false;
}
if(contentcheck('ex1.php','Bajestani')===true)
echo 'Got it';
?>
提前致谢