如何刪除 onmousedown="return curwt(this, 'http://www.example.com/2009/07/content.html')"
使用str_replace()
,我知道如何使用此字符串,但不知道如何配置此字符串以這種方式刪除onmousedown="all content"
的方式。
我試過這種方式:$result = str_replace("onmousedown''", " ", $result);
但它不會工作..任何想法?使用str_replace()
-2
A
回答
4
我認爲你要使用正則表達式
$result = preg_replace('/onmousedown=".*?"/', '', $result);
或者,如果它可以同時撇號和引號:
$result = preg_replace('/onmousedown=("|\').*?\1/', '', $result);
+0
謝謝,還有一個問題可以確定>'$ result = str_replace('href =「',」href ='http://site.com/visit.html?「,$ result);' – user1642787
+0
沒關係它會工作..我不能說它是否會做你想做的事情。 –
0
不能使用str_replace函數對於這一點,因爲它可以只能替換預定義的字符串,不能使用通配符。
您可以使用preg_replace。
相關問題
- 1. 使用str_replace函數
- 2. 使用str_replace函數
- 3. 使用str_replace函數
- 4. 使用str_replace修改
- 5. 使用str_replace和file_get_contents
- 6. 使用數組的str_replace
- 7. 在陣列上使用str_replace
- 8. str_replace和使用額外的「
- 9. 使用str_replace函數找到()
- 10. 使用`str_replace`創建鏈接
- 11. str_replace函數「|」使用PHP
- 12. 在str_replace中使用數組
- 13. PHP:如何使用str_replace?
- 14. 在simple_html_dom之前使用str_replace
- 15. 結合使用str_replace與ut8_decode
- 16. 使用自定義函數str_replace內容
- 17. 使用str_replace或其他手工刪除
- 18. 在php中使用str_replace時出錯?
- 19. 使用數組的PHP str_replace標記
- 20. 爲什麼同時使用str_replace()和preg_replace()?
- 21. 使用str_replace和數組切換文本
- 22. 使用str_replace函數來改變the_title()
- 23. 如何在laravel中使用str_replace
- 24. 如何在這裏正確使用str_replace?
- 25. str_replace函數通過使用從$ _SESSION
- 26. str_replace函數使用單引號
- 27. 使用preg_match和str_replace驗證鏈接
- 28. 我應該使用str_replace而不是substr?
- 29. PHP嘗試使用str_replace()函數
- 30. 將str_replace與smarty變量結合使用
改爲使用'preg_replace()'。 'str_replace()'不允許使用那樣的通配符。 – ceejayoz