0

我现在有这个

en_title cell
huawei e160e best modem for mobile using, 3g hsdpa



UPDATE lang_temp
SET fi_content = CONCAT( '<a href="http://www.google.fi/search?hl=fi&source=hp&q=', en_title ,'&meta=&aq=f&oqnofollow" target=_blank>Google search...</a>')
WHERE en_content ='';

我需要将空格替换为 + 包机,并将值限制为 15 个包机。

结果我需要得到

<a href="http://www.google.fi/search?hl=fi&source=hp&q=huawei+e160e+best+f&meta=&aq=f&oqnofollow" target=_blank>Google search...</a>

怎么可能?

4

1 回答 1

1

使用 str_replace(" ","+","你的 URL"); 在给定的 URL 中用 + 替换空格

于 2013-07-11T12:46:31.760 回答