我有一个字符串,字符串就是这样。
$Result;
$name = 'á é í ó ú ¿ ¡ ü';
preg_match_all('#(?<=\s|\b)\p{L}#ui', $name, $Result);
print_r($Result);
$结果为Array ( [0] => Array ( [0] => á [1] => é [2] => í [3] => ó [4] => ú [5] => ü ) )
现在我正在使用内爆。
$ret = implode('', $Result[0]);
echo $ret; // it is print like this: áéíóúü
现在我只想要这个字符串中的前3个字符。但是它会与?一起回归。
$ret = substr($ret, 0, 3);
echo $ret // it is print like this: á�
我的预期结果是:áéí
。