$text = "\t\tThese are a few words :) ... ";
var_dump($text);
echo '----------------------------------';
echo '
';
$trimmed = trim($text);
var_dump($trimmed);
$trimmed = trim($text, " \t:)");
var_dump($trimmed);
输出:
string 'these are a few words :) ...' (length=28)
string 'these are a few words :) ...' (length=28)
$trimmed = trim($text, " \t:).");
var_dump($trimmed);
输出:
string 'these are a few words' (length=21)
疑问是::)加了一个.后就能正常过滤了。为毛?
trim 的第二个参数是一个字符列表
凡是出现在该列表中的,第一个参数两端的字符都会被删去。在第一个不在列表中的字符处停止
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号