跳至主要內容
  • Hostloc 空間訪問刷分
  • 售賣場
  • 廣告位
  • 賣站?

4563博客

全新的繁體中文 WordPress 網站
  • 首頁
  • 一个关于 PHP trim 函数的问题
未分類
20 7 月 2020

一个关于 PHP trim 函数的问题

一个关于 PHP trim 函数的问题

資深大佬 : nilai 5

代码非常简单:
<?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);

执行后的结果:
[email protected]:/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 均测试如此

大佬有話說 (19)

  • 資深大佬 : geeglo

    trim 的常见误区,的第二参数不会作为整体去移除。而是每个字符单独左右移除

  • 主 資深大佬 : nilai

    @geeglo 若要整体移除呢? 用什么函数代替?

  • 資深大佬 : zachlhb

    @nilai rtrim

  • 資深大佬 : geeglo

    没有,自己写。

  • 資深大佬 : weirdo

    @nilai str_replace preg_replace
    $url = str_replace(‘.git’, ”, $url)

  • 資深大佬 : littleylv

    手册有说明:
    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

    $url = ‘http://10.100.11.5/xapi.git’;
    $tmp = preg_replace(“/.git$/”, “”, $url);

  • 資深大佬 : rming

    preg_replace(“/^start|end$/”, “”, “start content end”)

  • 主 資深大佬 : nilai

    @weirdo str_replace 不适合, str_replace 会替换字符串中的所有, trim 功能中只去头尾

  • 主 資深大佬 : nilai

    @rming preg_replace 能实现。

  • 主 資深大佬 : nilai

    @rming 简单写了个函数 这样可好?
    function strim($string,$removestring){
    if (!is_string($string) || !is_string($removestring)){
    return $string;
    }
    $result = preg_replace(“/^{$removestring}|{$removestring}$/”, “”, $string);
    return $result;
    }

  • 主 資深大佬 : nilai

    改成这样可能会更好点。
    function strim($string,$removestring=”){
    if (!is_string($string)){
    return $string;
    }
    if (!$removestring){
    return trim($string);
    }
    $result = preg_replace(“/^{$removestring}|{$removestring}$/”, “”, $string);
    return $result;
    }

  • 資深大佬 : KasuganoSoras

    @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

    这不是很正常
    trim 会循环去除 charlist 里面的字符,直到完全移除
    igithttp://10.100.11.5/xapiggtigigit , git 这个应该也只会输出 http://10.100.11.5/xap

  • 資深大佬 : yc8332

    这个是去除字符,不是字符串。。。你要去除字符串要用替换

  • 資深大佬 : WeKeey

    substr pathinfo

  • 資深大佬 : jiehuangwei

    有意思,明显没细看函数吧 猜猜这个输出 啥 trim(‘abc’, ‘bad’)

  • 資深大佬 : sevenzhou1218

    没仔细看手册,看了就不会问这个问题了

  • 資深大佬 : cbasil

    去除字符串用 str_replace 或者 preg_replace 啊,trim 一般用来去掉字符串二端的空格

文章導覽

上一篇文章
下一篇文章

AD

其他操作

  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.org 台灣繁體中文

51la

4563博客

全新的繁體中文 WordPress 網站
返回頂端
本站採用 WordPress 建置 | 佈景主題採用 GretaThemes 所設計的 Memory
4563博客
  • Hostloc 空間訪問刷分
  • 售賣場
  • 廣告位
  • 賣站?
在這裡新增小工具