欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

几个有用的php函数

程序员文章站 2022-06-07 13:01:40
...
几个有用的php函数
1. exec执行系统命令

exec("ls -a", $out);

print_r($out);

2. php验证字段,验证邮箱

filter_var('bob@example.com', FILTER_VALIDATE_EMAIL)

3.判断是否在集合中出现

in_array("hello", array("good","bad","hello"))//结果 true,找不到返回false

4. file_get_contents

读取文件内容,将文件内所有内容读入到串中。同样可以读入url,用于下载网页内容。

$res = file_get_contents(http://www.baidu.com);

5. str_replace

mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

字符串替换echo str_replace("world","John","Hello world!")

输出 Hello John

以上就是几个有用的php函数的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: php函数