php 中的explode 和 in_array 错误

发布于 2024-11-28 14:51:46 字数 304 浏览 1 评论 0原文

我想检查

$string = '10-15~15-20~20-25~';

    $stringArray = explode('~',rtrim($string,'~'));

    if (in_array('20-25', $stringArray)) {
       echo 'Found';
    }
    else
    {
        echo 'Not found';
    }

我的数组中是否存在 php 20-25 的以下条件,但它总是显示 not found

I would like to check the following condition with php

$string = '10-15~15-20~20-25~';

    $stringArray = explode('~',rtrim($string,'~'));

    if (in_array('20-25', $stringArray)) {
       echo 'Found';
    }
    else
    {
        echo 'Not found';
    }

20-25 is present in my array but, it always shows not found

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云归处 2024-12-05 14:51:46

您的代码中有一些错误。
这是一个更正的版本。

$string = '10-15~15-20~20-25~';
$stringArray = explode('~',rtrim($string,'~')); // corrected here, missing "$" before "string"
if (in_array('20-25', $stringArray)) { // corrected here, wrong variable name "priceArray"
   echo 'Found';
}
else
{
    echo 'Not found';
}

There are some errors in your code.
Here is a corrected version.

$string = '10-15~15-20~20-25~';
$stringArray = explode('~',rtrim($string,'~')); // corrected here, missing "$" before "string"
if (in_array('20-25', $stringArray)) { // corrected here, wrong variable name "priceArray"
   echo 'Found';
}
else
{
    echo 'Not found';
}
剩余の解释 2024-12-05 14:51:46

$priceArray 替换为 $stringArray。这只是一个错字。您正在未初始化的变量中搜索“20-25”。

replace $priceArray with $stringArray. It's just a typo. You are searching "20-25" in non-initialized variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文