以下代码:
<?PHP
$str='Who are you?';
echo chop($str,'you?').'<br>';
echo chop($str,'are you?').'<br>';
?>
给我输出:
Who are
Wh
为什么第二个输出是
Wh
并不是
who
解决方法:
因为:
和
(PHP 4, PHP 5, PHP 7)
rtrim
— Strip whitespace (or other characters) from the end of a string
string rtrim ( string $str [, string $character_mask ] )
所以……你正在喂一个角色面具.
鉴于此,“o”在该掩码中,因此它被修剪掉了