在PHP中,以下内容有效:
$n='abc';
echo $n[1];
但似乎以下'abc'[1];
不是。
解析器有什么问题吗?
不幸的是,目前即使是$n[1]
语法也没那么有用◕(◕,因为它不支持Unicode并返回字节而不是字母。
答案 0 :(得分:10)
echo 'abc'[1];
仅在PHP 5.5
see Full RFC中有效,但在$n[1] or $n{2}
的所有版本中PHP
为valid
不幸的是,目前即使是
$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);
}
}
答案 1 :(得分:1)
不,这是正确的操作。要做你想做的事,你可以试试:
echo substr('abc', 1, 1);
答案 2 :(得分:0)
文字字符串访问语法'abc'[1]
在JavaScript中非常有效,但在版本 5.5 之前不会在PHP中受支持。