PHP - 当单词通过GET请求时,Trim不起作用

时间:2015-04-17 13:46:04

标签: php trim

[PHP] - 当单词通过GET请求时,Trim不起作用

我的脚本如下:

if(isset($_GET['use'])){
    $usage = $_GET['use'];
    $str = "Hello World";
    echo $str . "<br>";
    echo rtrim($str,$usage);
}
  

,结果应为:

     

当url以= index.php结尾?use = World
  echo $ str = Hello World
  echo rtrim($ str,$ usage)==你好

但这不适合我,为什么?

1 个答案:

答案 0 :(得分:0)

当我运行您的示例代码时,它会输出

  

您好

看来你做错了什么。

当我尝试

  

的index.php?使用=世界

仍然输出

  

您好

当我尝试

  

的index.php?使用= WORL

输出

  

Hello World