任务:删除字符串空格及其之后的所有内容方法一:用正则表达式,正则模式为/[\s+].*$/,示例语句:echo preg_replace('/[\s].*$/', '', $url);方法二,使用substr,示例语句:echo substr($url, 0, strpos($url,' '));