foreach strpos问题。在另一个字符串中查找字符串

发布于 2024-11-18 06:46:53 字数 693 浏览 3 评论 0原文

我正在努力让这个脚本发挥作用。

这个想法是,如果输入字符串 ($query) 不以 '/t' 开头并且包含 $trigger 单词之一,设置了 $error

我无法让它工作,我也不知道为什么。

<?php

    $error = false;

    $triggers = array('sell', 'buy', 'trade', 'trading');

    $query = 'buying stuff';

    if (!empty($query)) {

        if (substr($query, 0, 2) != '/t') {

            foreach ($triggers as $trigger) {

                if (strpos($query, $trigger)) {

                    $error = true;
                }
            }
        }
    }

    if ($error) {

        echo "fail";
    }
    else {

        echo "pass";
    }

?>

这应该触发了错误,但似乎没有。我做错了什么?

I'm trying to get this script to work.

The idea is that if the input string ($query) doesn't start with '/t' AND contains one of the $trigger words, an $error is set.

I can't get this to work and I'm not sure why.

<?php

    $error = false;

    $triggers = array('sell', 'buy', 'trade', 'trading');

    $query = 'buying stuff';

    if (!empty($query)) {

        if (substr($query, 0, 2) != '/t') {

            foreach ($triggers as $trigger) {

                if (strpos($query, $trigger)) {

                    $error = true;
                }
            }
        }
    }

    if ($error) {

        echo "fail";
    }
    else {

        echo "pass";
    }

?>

That should have triggered the error but it doesn't seem to be. What am I doing wrong?

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

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

发布评论

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

评论(4

酒浓于脸红 2024-11-25 06:46:53

如果函数 strpos 无法找到字符串,则返回 false。另请注意,如果在开头找到搜索字符串,则返回 0

更改

if (strpos($query, $trigger)) {

if (strpos($query, $trigger) !== false) {

If the function strpos fails to find the string it returns false. Also note that if the search string is found at the very beginning a 0 is returned.

Change

if (strpos($query, $trigger)) {

to

if (strpos($query, $trigger) !== false) {
本王不退位尔等都是臣 2024-11-25 06:46:53

更改此设置以

if (strpos($query, $trigger) !==false ) {

检查 strpos 的工作原理

change this to

if (strpos($query, $trigger) !==false ) {

checkout how strpos works

月牙弯弯 2024-11-25 06:46:53

问题是:

  if (strpos($query, $trigger)) {

如果在索引 0 处找到字符串,则计算结果为 0,这会导致 IF 语句为 false
所以使用

(strpos($query,$trigger) !== false )

here is the problem :

  if (strpos($query, $trigger)) {

This evaluates to 0 if string is found at index 0, which causes IF statement to be false
so use

(strpos($query,$trigger) !== false )

泛泛之交 2024-11-25 06:46:53
<?php

    $error = false;

    $triggers = array('sell', 'buy', 'trade', 'trading');

    $query = 'buying stuff';

    if (!empty($query)) {

        if (substr($query, 0, 2) != '/t') {

            foreach ($triggers as $trigger) {

                if (strpos($query, $trigger) !== false) {

                    $error = true;
                    break;
                }
            }
        }
    }

    if ($error) {

        echo "fail";
    }
    else {

        echo "pass";
    }

?>

请使用“break”关键字并进行适当的检查。

希望有帮助。

<?php

    $error = false;

    $triggers = array('sell', 'buy', 'trade', 'trading');

    $query = 'buying stuff';

    if (!empty($query)) {

        if (substr($query, 0, 2) != '/t') {

            foreach ($triggers as $trigger) {

                if (strpos($query, $trigger) !== false) {

                    $error = true;
                    break;
                }
            }
        }
    }

    if ($error) {

        echo "fail";
    }
    else {

        echo "pass";
    }

?>

Please use the "break" keyword, along with the proper checking.

Hope it helps.

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