2013-12-16 36 views

回答

0

有幾個方法可以做到這一點:

使用preg_replace()

$old_string = "good morning*12"; 
$new_string = preg_replace("/\*.*/", "", $old_string); 
+0

非常感謝Ed Cottrell,你解決了我的問題。 – user3056158

相關問題