2011-05-02 9 views

답변

3
$string = str_replace("'", '', $string); 
1

빈 문자열로 따옴표를 교체하려면 :

$string = str_replace("'","",$string); 
관련 문제