正在移除来自 PHP 中的 URL 或链接的单个或多个


Removing   single or multiple from the url or link in php

从URL或链接中删除单个或多个 ,例如:

www.makeuseof.com/tag/7-tips-tricks-google-drive/    
这将

删除$link字符串中的所有 元素:

$link = str_replace(' ','',$link);