gpt4 book ai didi

php - 印章() 与 rtrim()

转载 作者:可可西里 更新时间:2023-11-01 13:41:16 25 4
gpt4 key购买 nike

我对 PHP 函数 rtrim()chop() 感到困惑,因为它们的工作原理相似并提供相似的输出。为什么修剪尾随字符有不同的功能?

示例:

PHP

$str = "Hello World!";
echo $str . "<br>";
echo rtrim($str,"World!") . "<br>"; //Hello
echo chop($str,"World!") . "<br>"; //Hello

chop()rtrim() 函数之间有什么区别吗?

最佳答案

手册中也有答案:http://php.net/manual/en/aliases.php

引自那里:

However there are functions which changed names because of an API cleanup or some other reason and the old names are only kept as aliases for backward compatibility.

chop() 只是 rtrim() 的别名,所以它们做同样的事情。这也在手册中:http://php.net/manual/en/function.chop.php

引自那里:

This function is an alias of: rtrim().

关于php - 印章() 与 rtrim(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28495291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com