phpStudy
phpStudy
网站首页
软件下载
PHP教程
编程技术
PHP
MySQL
HTML
CSS
JavaScript
MSSQL
AJAX
.NET
JSP
window
Linux
Mac
ASP
服务器
CMS
SQL
jQuery
C#
C++
java
Android
IOS
oracle
MongoDB
PostgreSQL
SQLite
教程手册
php
html
html5
css
css3
JavaScript
ajax
jquery
sql
ado
asp
aspnet
browsers
careers
dhtml
dotnetmobile
dtd
e4x
glossary
hosting
htmldom
json
media
msnet
quality
rdf
rss
schema
semweb
site
sitemap
smil
soap
svg
tags
tcpip
vbscript
w3c
wap
web
webservices
wmlscript
wsdl
xforms
xhtml
xlink
xml
xmldom
xpath
xquery
xsl
xslfo
网站测速
小皮面板
智能dns
搜索
首页
PHP教程
trim 去除字符串首尾处的空白字符(或者其他字符)
trim 去除字符串首尾处的空白字符(或者其他字符)
trim
(PHP 4, PHP 5)
trim
—
去除字符串首尾处的空白字符(或者其他字符)
说明
string
trim
(
string
$str
[,
string
$charlist
] )
此函数返回字符串
str
去除首尾空白字符后的结果。如果不指定第二个参数,
trim()
将去除这些字符:
" " (
ASCII
32
(
0x20
)),普通空格符。
" " (
ASCII
9
(
0x09
)),制表符。
" " (
ASCII
10
(
0x0A
)),换行符。
" " (
ASCII
13
(
0x0D
)),回车符。
"