如果匹配单词,删除其余的字符串

时间:2016-01-23 12:28:23

标签: php smarty

我想删除匹配的休息字符串,例如聪明的“exampleword”。 或删除最后100个字符的字符串? 用PHP可以使用trimy功能或某些功能吗?

1 个答案:

答案 0 :(得分:1)

您可以使用substr(),示例代码:

echo substr("string of 100 characters ore more...", -5); // re...
echo substr("string of 100 characters ore more...", 0, -5); // string of 100 characters ore mo

$smarty = new Smarty;
$smarty->assign('name', substr('george smith', 0, -3));
$smarty->display('index.tpl');

在示例#1中查看here,了解示例#2中的负启动或长度(取决于您要返回的部分)但请务必检查字符串是否实际大于100个字符(使用{{ 1}})在你这样做之前。