0
我試圖做的是去除串破折號後如果的字符串匹配破折號什麼附加後。刪除字符串如果最終字符串匹配給定的字符串
比如它會像:如果endofstring等於givenstring,後刪除破折號和一切,否則保持破折號
感謝您的幫助!
我試圖做的是去除串破折號後如果的字符串匹配破折號什麼附加後。刪除字符串如果最終字符串匹配給定的字符串
比如它會像:如果endofstring等於givenstring,後刪除破折號和一切,否則保持破折號
感謝您的幫助!
$string='Hello this is the-end';
$remove='end';
$i=strrpos($string, $remove);
if ($i===strlen($string)-strlen($remove)) $string=substr($string, 0, $i-1);
var_dump($string);
看起來比以前困難得多,但謝謝!我會在下列情況下接受:D – user2943677