stristr,如果字符串不包含任何内容(空字符串)
我正在为我的网站进行搜索,当特定参数为“”(无)时,我想显示所有结果。我尝试了以下方法,但没有成功。
<?php
$a = file("test.txt");
sort($a);
foreach ($a as $b) {
$c = explode("|", $b);
if (isset($_GET['name'])) {
if (stristr($c[0], $_GET['name'])) {
echo '<option value="' . $c[0] . '">' . $c[0] . '</option>';
}
}
?>
这只是一个测试脚本,我将在上面的 if 语句中使用多个 GET。
I'm making a search thing for my website, and when a particular parameter is '' (nothing), I want to display all the results. I tried the following, but it didn't work.
<?php
$a = file("test.txt");
sort($a);
foreach ($a as $b) {
$c = explode("|", $b);
if (isset($_GET['name'])) {
if (stristr($c[0], $_GET['name'])) {
echo '<option value="' . $c[0] . '">' . $c[0] . '</option>';
}
}
?>
And this is just a test script, I'm going to use multiple GETs in the above if statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 empty 而不是 isset。
Use empty instead of isset.
检查 stristr 是否没有返回 false。
Check if stristr is not returning false..