如何使 strpos() 只匹配分隔字符串中的整数?

发布于 2024-11-03 18:16:27 字数 541 浏览 0 评论 0原文

我有一个逗号分隔的字符串,我需要能够在该字符串中搜索给定字符串的实例。我使用以下函数:

function isChecked($haystack, $needle) {
    $pos = strpos($haystack, $needle);
    if ($pos === false) {
        return null;
    } else {
        'return 'checked="checked"';
    }
}

示例: isChecked('1,2,3,4', '2') 搜索 2 是否在字符串中并勾选相应的复选框以我的其中一种形式。

但是,当涉及到 isChecked('1,3,4,12', '2') 时,它不会返回 NULL,而是返回 TRUE ,因为它显然在 12 中找到了字符 2

我应该如何使用 strpos 函数才能得到正确的结果?

I have a comma delimited string and I need to be able to search the string for instances of a given string. I use the following function:

function isChecked($haystack, $needle) {
    $pos = strpos($haystack, $needle);
    if ($pos === false) {
        return null;
    } else {
        'return 'checked="checked"';
    }
}

Example: isChecked('1,2,3,4', '2') searches if 2 is in the string and ticks the appropriate checkbox in one of my forms.

When it comes to isChecked('1,3,4,12', '2') though, instead of returning NULL it returns TRUE, as it obviously finds the character 2 within 12.

How should I use the strpos function in order to have only the correct results?

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

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

发布评论

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

评论(4

旧街凉风 2024-11-10 18:16:27
function isChecked($haystack, $needle) {
    $haystack = explode(',', $haystack);
    return in_array($needle, $haystack);
}

您也可以使用正则表达式

function isChecked($haystack, $needle) {
    $haystack = explode(',', $haystack);
    return in_array($needle, $haystack);
}

Also you can use regular expressions

辞慾 2024-11-10 18:16:27

使用explode()可能是最好的选择,但这里有一个替代方案:

$pos = strpos(','.$haystack.',', ','.$needle.','); 

Using explode() might be the best option, but here's an alternative:

$pos = strpos(','.$haystack.',', ','.$needle.','); 
帅冕 2024-11-10 18:16:27

最简单的方法可能是将 $haystack 拆分为数组,并将数组的每个元素与 $needle 进行比较。

使用的东西[除了你使用的东西,例如 if 和 function ]:
explode()
foreach
strcmp
trim

函数:

function isInStack($haystack, $needle) 
{
    # Explode comma separated haystack
    $stack = explode(',', $haystack);

    # Loop each
    foreach($stack as $single)
    {
          # If this element is equal to $needle, $haystack contains $needle
          # You can also use strcmp:
          # if( strcmp(trim($single), $needle) )
          if(trim($single) == $needle)
            return "Founded = true";        
    }
    # If not found, return false
    return null;
}

示例:

var_dump(isInStack('14,44,56', '56'));

返回:

 bool(true)

示例 2:

 var_dump(isInStack('14,44,56', '5'));

返回:

 bool(false)

希望有帮助。

Simplest way to do it may be splitting $haystack into array and compare each element of array with $needle.

Things used [except used by you like if and function]:
explode()
foreach
strcmp
trim

Funcion:

function isInStack($haystack, $needle) 
{
    # Explode comma separated haystack
    $stack = explode(',', $haystack);

    # Loop each
    foreach($stack as $single)
    {
          # If this element is equal to $needle, $haystack contains $needle
          # You can also use strcmp:
          # if( strcmp(trim($single), $needle) )
          if(trim($single) == $needle)
            return "Founded = true";        
    }
    # If not found, return false
    return null;
}

Example:

var_dump(isInStack('14,44,56', '56'));

Returns:

 bool(true)

Example 2:

 var_dump(isInStack('14,44,56', '5'));

Returns:

 bool(false)

Hope it helps.

鹿港巷口少年归 2024-11-10 18:16:27
function isChecked($haystack, $needle) 
{
    $pos = strpos($haystack, $needle);
    if ($pos === false)
    {
        return false;
    } 
    else 
    {
        return true;
    }
}
function isChecked($haystack, $needle) 
{
    $pos = strpos($haystack, $needle);
    if ($pos === false)
    {
        return false;
    } 
    else 
    {
        return true;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文