我正在嘗試刪除字符串中的最後一個元音。例如:PHP:查找字符串中的最後一次出現
$string = 'This is a string of words.';
$vowels = array('a','e','i','o','u');
if (in_array($string, $vowels)) {
// $newstring = '' // Drop last vowel.
}
echo $newstring; // Should echo 'This is a string of wrds.';
我該怎麼做?
感謝
一個通用的答案在你的標題問題是使用'strrpos' – Sugar