define('IMOOC',realpath( ' . / ' )); 少个点 册那
2017-03-04
@Benefit
这一节的坑大家踩到了吗?你会发现不管/index还是/add加载是同一个页面;
从第一节课开始,我在坑里就没出来过。。。。
这一节的坑大家踩到了吗?你会发现不管/index还是/add加载是同一个页面;
从第一节课开始,我在坑里就没出来过。。。。
2017-02-20
参考php手册,静态方法为public static function。
<?php
class Foo
{
public static $my_static = 'foo';
public function staticValue() {
return self::$my_static;
}
}
<?php
class Foo
{
public static $my_static = 'foo';
public function staticValue() {
return self::$my_static;
}
}
2017-02-10