今日课程:PHP 3天基础巩固视频教程【燕十八】
1、动态调用函数
function addition ($a, $b){ echo ($a + $b), "\n"; } $result = "addition"; $result (3,6); echo "<br />";
2、时间戳函数
echo "<br />"; //时间戳是指1970年1月1日到现在这一瞬间经过的秒数 echo time(),‘<br />‘; print_r(microtime(),‘<br />‘);//返回毫秒 print_r(microtime(true));//返回微秒,可以查看程序运行需要多少时间 $start = microtime(true); for ($i=1; $i < 10000; $i++) { $tmp = 133333/234; } $end = microtime(true); echo $end - $start;
3、时间戳格式化
echo "<br />"; $y=date("Y",time()); $m=date("m",time()); $d=date("d",time()); echo $y.$m.$d;
4、日期解析函数
echo "<br />"; echo(date("M-d-Y",mktime(0,0,0,12,36,2001))); echo(date("M-d-Y",mktime(0,0,0,14,1,2001))); echo(date("M-d-Y",mktime(0,0,0,1,1,2001))); echo(date("M-d-Y",mktime(0,0,0,1,1,99)));
5、字符串定义方式
$a = "hellow"; $b = "word"; echo $a,‘<br />‘,$b; echo "<br />"; //heredoc nowdoc定义大段文本 //三个<<<定义名,结尾定义名 $c = <<<HTML hello word abc ok now; HTML; echo $c; echo "<br />"; $d = <<<‘AAA‘ 大大大大傻逼 AAA; echo $d; echo "<br />";
最后一段代码遇到问题,未解决。
今天学习2小时,休息,明天继续
时间: 2024-11-20 23:37:44