Heim > php教程 > php手册 > Hauptteil

php trim() 函数实例讲解 - small_123

WBOY
Freigeben: 2016-05-20 10:13:19
Original
1588 Leute haben es durchsucht

php trim() 函数移除字符串两侧的空白字符或其他预定义字符,本文章向码农介绍php trim() 函数的使用方法和实例,感兴趣的码农可以参考一下。

定义和用法

trim() 函数移除字符串两侧的空白字符或其他预定义字符。

相关函数:

  • ltrim() - 移除字符串左侧的空白字符或其他预定义字符
  • rtrim() - 移除字符串右侧的空白字符或其他预定义字符

 

语法

trim(string,charlist)
Nach dem Login kopieren

参数描述
string 必需。规定要检查的字符串。
charlist

可选。规定从字符串中删除哪些字符。如果被省略,则移除以下所有字符:

  • "\0" - NULL
  • "\t" - 制表符
  • "\n" - 换行
  • "\x0B" - 垂直制表符
  • "\r" - 回车
  • " " - 空格

技术细节

返回值: 返回被修改的字符串
PHP 版本: 4+
更新日志: 在 PHP 4.1 中,新增了 charlist 参数。

实例

移除字符串两侧的空格:

<?php
$str = " Hello World! ";
echo "不使用 trim: " . $str;
echo "<br>";
echo "使用 trim: " . trim($str);
?>
Nach dem Login kopieren

在线运行

以上代码的 HTML 输出如下(请查看源代码):

<!DOCTYPE html>
<html>
<body>

不使用 trim:  Hello World! <br>使用 trim: Hello World!
</body>
</html>
Nach dem Login kopieren

以上代码的浏览器输出如下:

不使用 trim: Hello World!
使用 trim: Hello World!
Nach dem Login kopieren

原文地址:http://www.manongjc.com/article/827.html

相关阅读:

php trim() 函数移除字符串两侧的空白字符或其他预定义字符

php rtrim() 函数移除字符串右侧的空白字符或其他预定义字符

php trim() 函数移除字符串两侧的空白字符或其他预定义字符

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage