其实上面的_set,_get,_isset,_unset,这些不要去看它,大概就是在解释call吧,直接看下面的call部分就好啦,比较好懂些,我是这样理解的
2017-05-08
把代码弄到Adobe Dreamweaver里,出现了下面的Warning:
Warning: Division by zero in E:\AppServ\www\exercise\r.php on line 10
Warning: Division by zero in E:\AppServ\www\exercise\r.php on line 10
Warning: preg_match(): Empty regular expression in E:\AppServ\www\exercise\r.php on line 12
Warning: Division by zero in E:\AppServ\www\exercise\r.php on line 10
Warning: Division by zero in E:\AppServ\www\exercise\r.php on line 10
Warning: preg_match(): Empty regular expression in E:\AppServ\www\exercise\r.php on line 12
2017-05-08
static其实是表示全局的意思,独立于类,被修饰过的变量系统会单独给它分配一块内存,这一内存块不随新类创建而改变。
2017-05-08
<?php
$filename = '/data/webroot/usercode/code/resource/test.txt';
//判断如果$filename文件存在的话 就输出文件内容
echo file_get_contents($filename);
if (file_exists($filename)) {
echo file_get_contents($filename);
}else{
echo '不存在';
}
哪里错了,为什么一直提醒我用函数file_exists检查文件是否存在,我不是使用了吗?
$filename = '/data/webroot/usercode/code/resource/test.txt';
//判断如果$filename文件存在的话 就输出文件内容
echo file_get_contents($filename);
if (file_exists($filename)) {
echo file_get_contents($filename);
}else{
echo '不存在';
}
哪里错了,为什么一直提醒我用函数file_exists检查文件是否存在,我不是使用了吗?
2017-05-08
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/[\w]+@[\w]+\.[com]+/';
preg_match($pattern,$subject,$matches);
echo $matches[0];
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/[\w]+@[\w]+\.[com]+/';
preg_match($pattern,$subject,$matches);
echo $matches[0];
2017-05-07
__destruct遇到php语言结束符的时候就会自动运行内部语句,即使注释掉//unset($car);也会出现析构函数被调用。!!卡住了我好久,希望对你们有用。
2017-05-06
Array
(
[0] => 4294967295
[id] => 4294967295
[1] => 李四
[name] => 李四
[2] => 18
[age] => 18
[3] => 高三一班
[class] => 高三一班
[4] => 0
[status] => 0
[5] => 2017-05-05 16:28:20
[create_time] => 2017-05-05 16:28:20
)
(
[0] => 4294967295
[id] => 4294967295
[1] => 李四
[name] => 李四
[2] => 18
[age] => 18
[3] => 高三一班
[class] => 高三一班
[4] => 0
[status] => 0
[5] => 2017-05-05 16:28:20
[create_time] => 2017-05-05 16:28:20
)
2017-05-05