4

在 PHP 中,以下是有效的:

$n='abc';
echo $n[1];

但似乎以下'abc'[1];不是。

它的解析器有什么问题吗?

不幸的是,目前甚至$n[1]语法也没有那么有用 ◕︵◕ ,因为它不支持 Unicode 并且返回字节而不是字母。

4

3 回答 3

10

echo 'abc'[1];仅在PHP 5.5 查看完整 RFC$n[1] or $n{2}有效, 但在所有版本中均有效PHP

见现场测试

不幸的是,目前甚至$n[1]语法也没有那么有用 ◕︵◕ ,因为它不支持 Unicode 并且返回字节而不是字母。

为什么不创建你的?例子 :

$str = "Büyük";
echo $str[1], PHP_EOL;

$s = new StringArray($str);
echo $s[1], PHP_EOL;

// or

echo new StringArray($str, 1, 1), PHP_EOL;

输出

�
ü
ü

使用类

class StringArray implements ArrayAccess {
    private $slice = array();

    public function __construct($str, $start = null, $length = null) {
        $this->slice = preg_split("//u", $str, - 1, PREG_SPLIT_NO_EMPTY);
        $this->slice = array_slice($this->slice, (int) $start, (int) $length ?  : count($this->slice));
    }

    public function slice($start = null, $length = null) {
        $this->slice = array_slice($this->string, (int) $start, (int) $length);
        return $this ;
    }

    public function offsetSet($offset, $value) {
        if (is_null($offset)) {
            $this->slice[] = $value;
        } else {
            $this->slice[$offset] = $value;
        }
    }

    public function offsetExists($offset) {
        return isset($this->slice[$offset]);
    }

    public function offsetUnset($offset) {
        unset($this->slice[$offset]);
    }

    public function offsetGet($offset) {
        return isset($this->slice[$offset]) ? $this->slice[$offset] : null;
    }

    function __toString() {
        return implode($this->slice);
    }
}
于 2013-03-28T19:49:04.423 回答
1

不,这是正确的操作。要做你想做的事,你可以尝试:

echo substr('abc', 1, 1);
于 2013-03-28T19:52:12.517 回答
0

文字字符串访问语法'abc'[1]在 JavaScript 中非常有效,但直到5.5版本才支持 PHP 。

于 2013-03-28T19:56:31.117 回答