alert怎么显示function方法返回的结果
程序员文章站
2022-04-08 17:55:23
...
alert如何显示function方法返回的结果
如下代码:
function check($out) {
$file_handle = fopen($out, 'r');
while (!feof($file_handle)) {
$line = fgets($file_handle);
if (substr($line, 0, 6) == "#ERROR") {
return substr($line, 8);
}
}
fclose($file_handle);
return "";
}
$out = "output/out.txt";
$error = check($out);
if ($error != "") {
echo "";
exit;
}
?>
此时无法弹出alert对话框。。。
但如果把check方法的return改为 return "abc",就能够弹出alert对话框了
我需要alert弹出的内容是从文件中获得的,请问如何修改?
------解决方案--------------------
取出一行存在换行问题 把换行去掉就行了
如下代码:
function check($out) {
$file_handle = fopen($out, 'r');
while (!feof($file_handle)) {
$line = fgets($file_handle);
if (substr($line, 0, 6) == "#ERROR") {
return substr($line, 8);
}
}
fclose($file_handle);
return "";
}
$out = "output/out.txt";
$error = check($out);
if ($error != "") {
echo "";
exit;
}
?>
此时无法弹出alert对话框。。。
但如果把check方法的return改为 return "abc",就能够弹出alert对话框了
我需要alert弹出的内容是从文件中获得的,请问如何修改?
------解决方案--------------------
function check($out) {
$file_handle = fopen($out, 'r');
while (!feof($file_handle)) {
$line = fgets($file_handle);
if (substr($line, 0, 6) == "#ERROR") {
return preg_replace("/\s/","",substr($line, 8));//去掉换行
}
}
fclose($file_handle);
}
$out = "out.txt";
$error = check($out);
if ($error != "") {
echo "";
exit;
}
取出一行存在换行问题 把换行去掉就行了
相关文章
相关视频