请教各位先进:
我想要在字串中寻找'2020',而'2020'是从另一个网页传递过来的变量
只是很奇怪的是,如果用GET将变量指定给$year是找不到的,但如果直接将'2020' 指定给$year却又找得到
这是发生什么问题呢?
先谢谢了
A网页的变量传递
<a href="index.php?year='2020'">首页</a>
B网页的接收
$year=$_GET['year'];
//$year='2020';
$mystring = '/video/录影/2020/20200124/@eaDir/';
$pos1 = stripos($mystring, $year);
if ($pos1 === false) {
echo "The string ".$year." was not found in the string ".$mystring."</br>";}
else {
echo "We found ".$year." in ".$mystring." at position ".$pos1."</br>";
};