首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
addcslashes()函数
addslashes()函数
bin2hex()函数
chop()函数
chr()函数
chunk_split()函数
convert_uudecode()函数
convert_uuencode()函数
count_chars()函数
explode()函数
implode()函数
lcfirst()函数
ltrim()函数
strpos()函数
stristr()函数
strlen()函数
strrev()函数
strtolower()函数
strtoupper()函数
substr()函数
trim()函数
ucfirst()函数
ucwords()函数
str_shuffle()函数
str_replace()函数
str_split()函数
str_pad()函数
ord()函数
strip_tags()函数
strchr()函数
strcmp()函数
str_word_count()函数
strcspn()函数
strpbrk()函数
md5(), sha1(), hash()
当前位置:
首页>>
技术小册>>
PHP合辑4-字符串函数
小册名称:PHP合辑4-字符串函数
addslashes()函数是PHP的内置函数,它返回带有预定义字符前反斜杠的字符串。它不接受任何参数中指定的字符。 预定义字符是: 单引号(‘) 双引号(“) 反斜杠(\) NULL 注意:addslashes()函数与addcslashes()函数不同,addcslashes()函数接受我们想要添加斜杠之前的指定字符,但addslashes()函数不接受任何参数中的字符,而是在一些指定字符之前添加斜杠。 语法: ``` addslashes($string) ``` 参数:addslashes()函数只接受一个参数$string,该参数指定需要转义的输入字符串。我们也可以说这个参数指定一个字符串,我们想在预定义的字符前添加反斜杠。 返回值:它返回带有转义字符串的转义字符串,该转义字符串在参数中传递的预定义字符前添加了反斜杠。 示例: ``` <?php // PHP program to demonstrate the // working of addslashes() function // Input String $str = addslashes('twinkle loves "coding"'); // prints the escaped string echo($str); ?> ``` output: ``` twinkle loves \"coding\" ```
上一篇:
addcslashes()函数
下一篇:
bin2hex()函数
该分类下的相关小册推荐:
Laravel(10.x)从入门到精通(九)
Laravel(10.x)从入门到精通(十八)
Magento中文全栈二次开发
经典设计模式PHP版
Laravel(10.x)从入门到精通(三)
Magento零基础到架构师(安装篇)
Yii2框架从入门到精通(中)
PHP高性能框架-Swoole
Magento零基础到架构师(目录管理)
PHP8入门与项目实战(8)
PHP8入门与项目实战(6)
PHP合辑3-数组函数