一个关于 PHP trim 函数的问题

2020-07-17 10:55:41 +08:00
 nilai
代码非常简单:
<?php
$url='http://10.100.11.5/xapi.git';
$tmp=trim($url,'.git');
var_dump($tmp);
$url='http://10.100.11.5/xapi';
$tmp=trim($url,'git');
var_dump($tmp);


执行后的结果:
root@debian10:/var/www/html# php 7.php
string(22) "http://10.100.11.5/xap"
string(22) "http://10.100.11.5/xap"
问题:为什么会把字符串结尾的 i 字符给吞了,




环境 php 7.3 php5.6 均测试如此
2646 次点击
所在节点    PHP
19 条回复
geeglo
2020-07-17 10:59:03 +08:00
trim 的常见误区,的第二参数不会作为整体去移除。而是每个字符单独左右移除
nilai
2020-07-17 11:04:41 +08:00
@geeglo 若要整体移除呢? 用什么函数代替?
zachlhb
2020-07-17 11:05:59 +08:00
@nilai rtrim
geeglo
2020-07-17 11:06:13 +08:00
没有,自己写。
weirdo
2020-07-17 11:06:56 +08:00
@nilai str_replace preg_replace
$url = str_replace('.git', '', $url)
littleylv
2020-07-17 11:14:31 +08:00
手册有说明:
https://www.php.net/manual/en/function.trim.php#refsect1-function.trim-notes

Note: Possible gotcha: removing middle characters
Because trim() trims characters from the beginning and end of a string, it may be confusing when characters are (or are not) removed from the middle. trim('abc', 'bad') removes both 'a' and 'b' because it trims 'a' thus moving 'b' to the beginning to also be trimmed. So, this is why it "works" whereas trim('abc', 'b') seemingly does not.
rming
2020-07-17 11:21:59 +08:00
$url = 'http://10.100.11.5/xapi.git';
$tmp = preg_replace("/\.git$/", "", $url);
rming
2020-07-17 11:23:37 +08:00
preg_replace("/^start|end$/", "", "start content end")
nilai
2020-07-17 11:29:37 +08:00
@weirdo str_replace 不适合, str_replace 会替换字符串中的所有, trim 功能中只去头尾
nilai
2020-07-17 11:30:20 +08:00
@rming preg_replace 能实现。
nilai
2020-07-17 11:34:38 +08:00
@rming 简单写了个函数 这样可好?
function strim($string,$removestring){
if (!is_string($string) || !is_string($removestring)){
return $string;
}
$result = preg_replace("/^{$removestring}|{$removestring}$/", "", $string);
return $result;
}
nilai
2020-07-17 11:46:50 +08:00
改成这样可能会更好点。
function strim($string,$removestring=''){
if (!is_string($string)){
return $string;
}
if (!$removestring){
return trim($string);
}
$result = preg_replace("/^{$removestring}|{$removestring}$/", "", $string);
return $result;
}
KasuganoSoras
2020-07-17 11:53:56 +08:00
@nilai #9 不要忘了 str_replace 有 count 参数
$url = str_replace(".git", "", $url, 1);
这样就只会替换一次了,另外如果你只是想单纯去掉结尾 .git 的话
$url = substr($url, -4, 4) == ".git" ? substr($url, 0, strlen($url) - 4) : $url;
完事了
airdge
2020-07-17 11:54:48 +08:00
这不是很正常
trim 会循环去除 charlist 里面的字符,直到完全移除
igithttp://10.100.11.5/xapiggtigigit , git 这个应该也只会输出 http://10.100.11.5/xap
yc8332
2020-07-17 11:58:59 +08:00
这个是去除字符,不是字符串。。。你要去除字符串要用替换
WeKeey
2020-07-17 12:13:02 +08:00
substr pathinfo
jiehuangwei
2020-07-17 13:07:26 +08:00
有意思,明显没细看函数吧 猜猜这个输出 啥 trim('abc', 'bad')
sevenzhou1218
2020-07-17 13:29:40 +08:00
没仔细看手册,看了就不会问这个问题了
cbasil
2020-07-20 09:38:09 +08:00
去除字符串用 str_replace 或者 preg_replace 啊,trim 一般用来去掉字符串二端的空格

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/690813

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX