需要一个工作代码示例,其中在 strpos() 函数的 $needle 参数中传递了一个非字符串值

Need a working code example where a non-string value is passed in $needle parameter of strpos() function

我在运行 Windows 10 家庭单一语言 64 位的机器上使用 PHP 7.2.11操作系统.

我看到了 strpos() function's needle parameter

的手册页

那里写成

needle

If needle is not a string, it is converted to an integer and applied as the ordinal value of a character.

我不明白上面关于 needle 参数的说明的含义。

有人可以向我解释 PHP 手册中关于 needle 参数的语句的含义以及传递非字符串值的工作代码示例在 strpos() 函数的 $needle 参数中。

如何转换为整数类型以及如何将其用作字符的序数值?

我在手册或任何其他网站的任何地方都找不到这样的例子。

如果能同时提供工作编码示例和偏移参数就更好了。

谢谢。

$haystack = "maio290";
$needle = ord("a");

var_dump(strpos($haystack,$needle));

输出:int(1)

为什么? 字符的序数值等于您可以在多个 ASCII 表中找到的数字。例如字符"a"等于整数97。

这里是PHP的源代码(或者你需要了解函数strpos的东西):

static int php_needle_char(zval *needle, char *target)
{
    switch (Z_TYPE_P(needle)) {
        case IS_LONG:
            *target = (char)Z_LVAL_P(needle);
            return SUCCESS;
        case IS_NULL:
        case IS_FALSE:
            *target = '[=11=]';
            return SUCCESS;
        case IS_TRUE:
            *target = '';
            return SUCCESS;
        case IS_DOUBLE:
            *target = (char)(int)Z_DVAL_P(needle);
            return SUCCESS;
        case IS_OBJECT:
            *target = (char) zval_get_long(needle);
            return SUCCESS;
        default:
            php_error_docref(NULL, E_WARNING, "needle is not a string or an integer");
            return FAILURE;
    }
}

PHP_FUNCTION(strpos)
{
    zval *needle;
    zend_string *haystack;
    const char *found = NULL;
    char  needle_char[2];
    zend_long  offset = 0;

    ZEND_PARSE_PARAMETERS_START(2, 3)
        Z_PARAM_STR(haystack)
        Z_PARAM_ZVAL(needle)
        Z_PARAM_OPTIONAL
        Z_PARAM_LONG(offset)
    ZEND_PARSE_PARAMETERS_END();

    if (offset < 0) {
        offset += (zend_long)ZSTR_LEN(haystack);
    }
    if (offset < 0 || (size_t)offset > ZSTR_LEN(haystack)) {
        php_error_docref(NULL, E_WARNING, "Offset not contained in string");
        RETURN_FALSE;
    }

    if (Z_TYPE_P(needle) == IS_STRING) {
        if (!Z_STRLEN_P(needle)) {
            php_error_docref(NULL, E_WARNING, "Empty needle");
            RETURN_FALSE;
        }

        found = (char*)php_memnstr(ZSTR_VAL(haystack) + offset,
                            Z_STRVAL_P(needle),
                            Z_STRLEN_P(needle),
                            ZSTR_VAL(haystack) + ZSTR_LEN(haystack));
    } else {
        if (php_needle_char(needle, needle_char) != SUCCESS) {
            RETURN_FALSE;
        }
        needle_char[1] = 0;

        php_error_docref(NULL, E_DEPRECATED,
            "Non-string needles will be interpreted as strings in the future. " \
            "Use an explicit chr() call to preserve the current behavior");

        found = (char*)php_memnstr(ZSTR_VAL(haystack) + offset,
                            needle_char,
                            1,
                            ZSTR_VAL(haystack) + ZSTR_LEN(haystack));
    }

    if (found) {
        RETURN_LONG(found - ZSTR_VAL(haystack));
    } else {
        RETURN_FALSE;
    }
}

在此处找到:https://github.com/php/php-src/blob/master/ext/standard/string.c

这意味着:

long: 获取一个 long 值并将其转换为 char。

null or false: returns 0(作为字符)

true:returns 1(作为字符)

double:获取一个双精度值,将其转换为整数(即​​所有部分 点丢失后)然后将其转换为字符。

object: 从对象中获取一个 long (? 并将其转换为一个字符。

我对 C 或 Zend-Engine 不是很深入,因此我可能解释错了。但这实际上应该是您要找的东西。