博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php字符串常用函数
阅读量:5874 次
发布时间:2019-06-19

本文共 1395 字,大约阅读时间需要 4 分钟。

addslashes

print addslahes ('She said, "Great!"');#output#She said, \"Great!\

echo

echo "hello world"#output#hello world

explode/implode

#explode$var = 'Learn PHP'; print_r (explode (' ',$var));# Result:# Array ( [0] => Learn [1] => PHP )#implode$array1 = array('one','two','three'); print (implode ('+',$array1));# output# one+two+three

htmlentities

print htmlentities('
An example');# output# <br>An example

htmlspecialchars

print htmlspecialchars('Is "this" true? 3 > 2', ENT_NOQUOTES);# output# Is "this" true? 3 > 2

md5

print md5('1');# Result:# c4ca4238a0b923820dcc509a6f75849b

number_format

number_format (number, [number_of_decimals], [decimal_character], [thousand_separator_character])

print number_format(5432.105, 3, ',', '.');# Result:# 5.432,105

str_replace

str_replace ('match_pattern', 'replacement_pattern', 'text', [count])

print str_replace ('str','k','The string replacement function in PHP is str_replace');#Result:#The king replacement function in PHP is k_replace

strlen

print strlen('strlen function');#output#15

strstr

strstr ('string', 'match_pattern', [before_indicator])

print strstr("PHP strstr function", 'str'); #output 'strstr function'print strstr("php strstr function", 'str',TRUE) #output 'PHP' [before_indicator]该参数自 php 5.3.0引入

substr

substr ('string', position_start, substr_length)

print substr('PHP substr is a substring function', 5, 3); #output 'ubs'

参考

转载地址:http://odenx.baihongyu.com/

你可能感兴趣的文章
央行下属的上海资信网络金融征信系统(NFCS)签约机构数量突破800家
查看>>
[转] Lazy evaluation
查看>>
常用查找算法总结
查看>>
被神话的大数据——从大数据(big data)到深度数据(deep data)思维转变
查看>>
修改校准申请遇到的问题
查看>>
Linux 进程中 Stop, Park, Freeze【转】
查看>>
文件缓存
查看>>
远程协助
查看>>
Scrum实施日记 - 一切从零开始
查看>>
关于存储过程实例
查看>>
配置错误定义了重复的“system.web.extensions/scripting/scriptResourceHandler” 解决办法...
查看>>
AIX 7.1 install python
查看>>
PHP盛宴——经常使用函数集锦
查看>>
重写 Ext.form.field 扩展功能
查看>>
Linux下的搜索查找命令的详解(locate)
查看>>
福利丨所有AI安全的讲座里,这可能是最实用的一场
查看>>
开发完第一版前端性能监控系统后的总结(无代码)
查看>>
Python多版本情况下四种快速进入交互式命令行的操作技巧
查看>>
MySQL查询优化
查看>>
【Redis源码分析】如何在Redis中查找大key
查看>>