對不起,不能把標題正確地把我的問題,我找不到一個方法來問它。如何替換所有匹配的正則表達式的PHP
所以我試着去替換裏面的所有文字和'
在PHP更換爲'
我有一個變量$desc = "he's such a good person and he'll be very successfull";
,我嘗試做以下
$desc = str_replace("'","'",$desc);
但是在str_replace
中沒有辦法使用正則表達式?
是的,現在看起來很好...出於某種原因。
有沒有辦法使用正則表達式呢?
例如從文本中刪除html標籤?
$desc = "<strong> he's such a good person </strong> <br /> he'll be very successfull";
$desc = str_replace("<*>"," ",$desc);
它工作正常。試試這個https://eval.in/800942 –
它工作正常...? – samiles
您必須在當前行之前的某處使用'htmlentities'。使用'html_entity_decode'將實體解碼爲它們的文字表示。 –