我最近开始使用php,我正在尝试加载具有(.txt)格式的文件名列表的网站内容。此外,我创建了一个函数:
<?php
//--------------------------
// The function itself
//--------------------------
function LoadSource($siteurl) {
$arrText = file($siteurl);
for ($i=0; $i<count($arrText); $i++) {
$pos = strpos($text . $arrText[$i], "+CUSERR+");
if ($pos !== false) {
echo "The string +CUSERR+ was found in the string";
$text = $text . $arrText[$i]." ==> REJECTED";
} else {
echo "The string +CUSERR+ was not found in the string";
$text = $text . $arrText[$i]." ==> ACCEPTED";
}
}
return $text;
}
$source = loadSource("http://www.example.com");
echo $source;
?>
我想要做的是,首先加载该网站的内容,然后显示(拒绝)旁边的txt文件名,其中包含(CUSERR)字或(接受)txt文件名旁边( CUSACK)字。
示例:
网址:www.example.com
内容:
file1.txt Rejected file2.txt Accepted
答案 0 :(得分:0)
这里有语法错误:
for ($i=0; $i
答案 1 :(得分:0)
这是你想要的线吗?
for ($i=0, $j=count($arrText); $i < $j; $i++) {