我需要找出字符串中的最后一个字符在哪里,字符是一个空格,然后把它剪掉。这是我正在使用的函数,但是 if 语句似乎有问题,但我不知道是什么。$text-string 中肯定有一个空格。
假设我有一个字符串“嘿,我叫 Joh”。然后它必须缩短为“嘿,我的名字是”。
$checkLastChar = false;
$text = $line[2];
while($checkLastChar != true){
for($i = 1; $i <= strlen($text); $i++)
{
if($text[strlen($tekst) - $i] == " ") {
$checkLastChar = true;
$text = substr($text, 1, strlen($text) - $i);
}
}
}