如何使用mysql限制字符串中的字符数

时间:2013-12-18 12:22:25

标签: mysql

我使用这个脚本:

$thisproductname_url=str_replace(" ", "-", $r["name"]); // replace a space with hyphen
$thisproductname_url = preg_replace( "/[^0-9a-zA-Z-]/", '', $thisproductname_url);

但变量$ thisproductname_url中的chracters数量有时太多(240+)而且会破坏链接。

有没有办法限制变量 - $ thisproductname_url - 说200个字符?

1 个答案:

答案 0 :(得分:0)

我不确定这与你的str_replace和preg_replace有什么关系,但是如果你想切断200个字符的字符串,只需使用substr (manual)。如果需要,您可以先检查长度。