首页 > 作文

PHP自定义函数+系统函数库

更新时间:2023-04-08 02:42:34 阅读: 评论:0

全局变量

    $n = 5; //全局变量    function fun1(){        global $n;        echo '我在函数体内也可以调用全局变量n,它的值是:' , $n;//5        $n++;    }    fun1();    echo '<hr>';    echo $n;//6
    $n = 6;    function fun1(){        echo '变量的值是:' , $globals['n'];        $globals['n']++;    }    fun1();    echo $globals['n'];

不使用循环语句,来计算1~100的和

    function recursive($n){        if($n>=1){            return $n + recursive($n-1);        }    }    echo recursive(100);

引用

    $foo = 'bob';    $bar = &$foo; //看待成变量的别名    $bar = 'ro';    echo $foo;//ro    $foo = 'mooc';    $bar = &$foo; //看待成变量的别名    unt($foo); //变量销毁    echo $bar;//mooc

自定义函数

    function fun1(&$n){        $n++;        echo '我是函数体内的局部变量' ,  $n ;//4    }    $n = 3;    fun1($n);    echo $n , '<hr>';//4

获得扩展名

    function getextension($filename)    {        $pos = strrpos($filename, '.');        $extension = strtolower(substr($filename, $pos + 1));        return $extension;    }    $path = 'mooc.func.php';    var_dump(getextension($path));

求平均数

    function avg(...$args)    {        return $args;    }    var_dump(avg(1, 2, 3));

系统函数库

字符串转数组

    $str = 'a|b|c|d';    $arr = explode('|', $str);    print_r($arr);//[a,b,c,d]

数组转字符串

    $arr2 = array('tom','john','ro');    $str2 = implode(',',$arr2);    echo $str2;//tom,john,ro

获取扩展名:
方法一

    $filename = 'ab.cd.gif.jpeg'; //gepj.fig.dc.ba    $num = strrpos($filename, '.');    echo strtolower(substr($filename, $num+1)) , '<br/><br/>';//jpeg

方法二

    $filename = 'ab.cd.gif.jpeg'; //gepj.fig.dc.ba    $str2 = strrev($filename);//strrev反转字符串    $num = strpos($str2, '.');    echo strtolower(strrev(substr($str2, 0,$num)));//jpeg

trim移除字符串两侧的字符

    $str = "\n\n\t\tabc\t\t";    echo trim($str);//abc

md5()加密

    $str = 'abc';    echo md5($str);//900150983cd24fb0d6963f7d28e17f72

格式化字符串

    $number = 5;    $str = 'shanghai';    $txt = sprintf('there are %d million cars in %s',$number,$str);    echo $txt;//there are 5 million cars in shanghai    $number = 123;    $txt = sprintf("带有两位小数的结果是:%1$.2f,\n不带小数的是:%1$d",$number);    echo $txt;//带有两位小数的结果是:123.00,不带小数的是:123

htmlspecialchars特殊字符转为html实体

    $str = "a>b,b<c,tom&john,he said:\"i'm ok\"";    echo htmlspecialchars($str,ent_quotes);//a&gt;b,b&lt;c,tom&amp;john,he said:&quot;i'm ok&quot;

通过str_rep炒葱椒鸡是哪个地方的菜lace进行转换

    $str1 = str_replace('&am淘米水洗脸p;', '&amp;', $str); //必须是第一阶梯    $str2 = str_replace('>', '&gt;', $str1);    $str2 = str_replace('<', '&lt;', $str2);    $str2 = str_replace('"', '&quot;', $str2);    $str2 = str_replace('\'', ''', $str2);    echo $str2;//a&gt;b,b&lt;c,tom&amp;john,he said:&quot;i'm ok&quot;

str_ireplace不区分大小写

    $str = 'javascript';    echo str_irepl部分否定ace('a', 'b', $str);//jbvbscript

随机地打乱字符串中的所有字符

    $str = 'abcdefghijklmnopqrstuvwxyz';    $str = str_shuffle($str);    echo substr($str,0,4);//drif

strlen获得字符长度

    $str1 = null;//0    $str2 = 'ab';//2    $str3 = '中国';//6 一个中文3个字符    echo strlen($str1) , strlen($str2) , strlen($str3);

stripos不区分大小写,字符串从0开始编号,如果没有出现,则返回fal

    $str1 = 'javascript';    $str2 = 'a';    var_dump(stripos($str1, $str2)); //int(1)  

搜索$str2在字符串中的位置,并返回从该位置到字符串结尾的所有字符

    $str1 = 'abcdcef';    $str2 = 'c';    echo strrchr($str1, $str2);//cef

获取扩展名

    $filename = 'a.bc.cd.png';    echo substr(strrchr($filename, '.'),1);//png

strtoupper转大写
strtolower转小写

    $str1 = 'html';    $str2 = 'php';    echo strtoupper($str1) , strtolower($str2);//htmlphp

ucfirst句子首字母大写
ucwords单词首字母大写

    $str3 = 'this is a test';    echo ucfirst($str3) , ucwords($str3);

substr截取字符串
负数=字符串长度+该负数

    $str = 'javascript';    echo strlen($str);//10    echo substr($str, 0,4) ;//java    echo substr($str, 4);//script    echo substr($str, -2);//pt   -2=10-2=8    echo substr($str, -5,-2) , "\n";//cri   -5,-2=5,8

将字符串转为zend_controller_front

    $str = 'zend_controller_front';    //1.转换小写    $str1 = strtolower($st雷雨教案r);    //2.将下划线替换成空格    $str2 = str_replace('_', ' ', $str1);    //3.通过ucwords进行首字母大写操作    $str3 = ucwords($str2);    //4.将空格替换成下划线    $str4 = str_replace(' ', '_', $str3);    echo $str4;//zend_controller_front

floor() ceil()

    $x = 2.7;    $y = 3.01;    echo floor($x) , '<br/><br/>';//2 向下取整    echo ceil($y) , '<br/><br/>';//4 向上取整

假设记录数为x,每页显示y条记录,求总页数z

    z = ceil(x/y);

fmod()对浮点数取模

    echo fmod(7.8,3) , '<br/>';//1.8

对整数取模

    echo 7.8 % 3 ; //整数余数的操作//1

格式化数字

    $x = 7896.827;    echo number_format($x) , '<br/><br/>';//7,897    echo number_format($x,2) , '<br/><br/>';//7,896.83

pow()幂操作 sqrt()平方根操作

    echo pow(2,3);//8    echo sqrt(4) ;//2

mt_rand()是更好的随机数生成器,因为它跟rand()相比播下了一个更好地随机数种子;而且性能上比rand()快4倍

    echo rand(50,80);    echo mt_rand(10,99);

生成四位数随机验证码

    $chars = 'abcdefghijlmnopqrstuvwxyz789654321';    $len = strlen($chars);    for($i=0;$i<4;$i++){        $char .= substr($chars,mt_rand(0,$len-1),1);    }    echo $char;

round()四舍五入

    $x = 7.238;    echo round($x);//7    echo round($x,2);//7.24

strtotime字符串转时间

    echo '当前日期:'  , date('y-m-d') , "\n";//2020-01-10    echo '下个月的日期:' , date('y-m-d', strtotime('1 month')) , "\n";//2020-02-10    echo '上个月最后一天:' , date('y-m-d h:i:s',strtotime('last day of -1 month')) , "\n";//2019-12-31 10:39:12    echo '上个月最后一天零点:' , date('y-m-d h:i:s', strtotime("midnight last day of -1 month")) , "\n"; //2019-12-31 00:00:00    echo '昨天零点:' ,  date('y-m-d h:i:s',strtotime('yesterday')) , "\n";//2020-01-09 00:00:00    echo '现在:' ,  date('y-m-d h:i:s',strtotime('now')) , "\n";//2020-01-10 10:39:12    echo '三个星期之间的时间戳是:' ,  strtotime('-3 weeks');//三个星期之间的时间戳是:1576810790    echo (time() -  strtotime('-3 weeks'))/86400 ;//21  间隔时间    echo '上个月:'.date('y-m-d h:i:s',strtotime('-1 month')) ; //上个月:2019-12-10 10:59:50    echo '上个月的第一天:'.date('y-m-d h:i:s',strtotime('first day of -1 month'));//上个月的第一天:2019-12-01 10:59:50

返回当前本地的日期/时间的日期/时间信息

    print_r(getdate());    //array    //(    //    [conds] => 3    //    [minutes] => 42    //    [hours] => 10    //    [mday] => 10    //    [wday] => 5    //    [mon] => 1    //    [year] => 2020    //    [yday] => 9    //    [weekday] => friday    //[month] => january    //[0] => 1578624123    //)

microtime()返回当前 unix 时间戳的微秒数

    echo microtime();//0.41369400 1578624195

当设置为 true 时,规定函数应该返回一个浮点数,否则返回一个字符串;默认为 fal

    echo microtime(true);//1578624195.4137

计算程序运行时间

    $start = microtime(true);    $sum = 0;    for ($i=0; $i <1000000 ; $i++) {         $sum += $i;    }    $end = microtime(true);    echo  '共花费' , round($end - $start,3) , '秒';//共花费0.016秒

time()

    echo time() ;//157862体现人们互相关爱的作文5294    echo '当前的日期时间是:' , date('y-m-d h:i:s') ;//当前的日期时间是:2020-01-10 11:01:34    echo '昨天的日期时间是:' , date('y-m-d h:i:s',time()-86400) ; //24*60*60 //昨天的日期时间是:2020-01-09 11:01:34

uniqid() 函数基于以微秒计的当前时间,生成一个唯一的 id

    echo uniqid();//5e17e94f8a19b    echo uniqid('abc');//abc5e17e96c1771e    echo uniqid(microtime());//0.09603300 15786253885e17e96c17727    echo uniqid(microtime() . mt_rand()); //mt_rand(100,999);//0.09604200 15786253884744704985e17e96c1772f    //uuid 8-4-4-4-12 = 32    echo md5(uniqid(microtime() . mt_rand()));//cf6333288fcb04f60fbbedafd127201e

ssion

    ssion_start();    echo ssion_id();//bp99jhu204h6vi214ttgcjce80

本文发布于:2023-04-08 02:42:33,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/692c67268fb691fcc5a35458cecdd034.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP自定义函数+系统函数库.doc

本文 PDF 下载地址:PHP自定义函数+系统函数库.pdf

上一篇:孕妇散步时间
下一篇:返回列表
标签:字符串   时间   上个月   日期
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图