这是一个小偷程序,但为什么字符串写成这样却不能赋值??
这只是部分程序:
文件a:
<br />function cut($file, $from, $end) {<a>2本文来源gao*daima.com搞@代#码&网6</a><pre>搞gaodaima代码
echo $from;
echo $end;
die();
$message = explode($from, $file);
$message = explode($end, $message[1]);
return $message[0];
}
文件b:
<br />$a = cut($fileContent, '<div class="box">', '</div>');<br />
文件b中函数后两个参数这样写,在文件a中echo出来为空;但参数值改为其他字符串就无问题,为什么会这样??