08_基本函数

举报
孙中明 发表于 2022/01/23 01:16:01 2022/01/23
【摘要】 定义函数  function f(){ } 调用函数 f(); 可变函数 function f(){ } $f1='f'; $f1(); 匿名函数 $f=function ($str){ echo $str; }; $f("helloworld"); 函数的局部变量 functi...

定义函数

 function f(){

}

调用函数 f();


可变函数

function f(){

}

$f1='f';

$f1();

匿名函数


$f=function ($str){

echo $str;

};

$f("helloworld");


函数的局部变量

function t(){

$m="hello";

$s=function($a) user ($m){

echo $m

}

}


基本函数

$str="helloworld";

int strlen($str);//用于计算str的长度

header('Contetn-type;text/html:charset=utf-8');

strtoupper($str);//字母转换大写

strtolower($str);//字母全部小写

ucfirst($str);首字母大写

uworlds($str);每个单词大写

str_replace('new','old',$str);

str_ireplace('new','old',$str);

htmlspecialchars($str);

trim();

ltrim();

rtrim();

strpos($str1,$str2);//计算str1的第一次出现的位置

stripos();//不区分大小写

strrpos();

strripos();//最后一次

substr($str,int start,int length);截取

strstr();

stristr();

strchr();

$str1='asdcfsfc';

$str2='c';

strchr($str1,$str2);//cfsfc

strichr($str1,$str2);//c


strrev($str);取反

md5($str);加密

str_shuffle($str);//打乱

explode($str);//分割

implode($str);//结合数组

sprintf();格式化字符串


数学函数

ceil (2.7)=3;

float(2.7)=2;

pow(2,3)=8;

sqrt(4)=2;

min($arr);

max();

rand(1,100);

mt_rand(1,100);

round(66.564,2)=66.56;


时间函数

number_format();

fmod(7.8,3)=1.8

echo date(Y-m-d H:i:s);

date_default_timezone_set(Asia/Shanghai);//设置时区

date_default_timezone_get();//获得时区

time();时间戳

strtotime('-3 weeks');//时间上三周

microtime();




文章来源: hiszm.blog.csdn.net,作者:孙中明,版权归原作者所有,如需转载,请联系作者。

原文链接:hiszm.blog.csdn.net/article/details/73527327

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。