C语言 c++ php mysql nginx linux lnmp lamp lanmp memcache redis 面试 笔记 ppt 设计模式 问题 远程连接

  2012年12月3日
摘要: /** * 双冒号操作符其意义应该是不实例化类而调用类中的方法或者成员等 * */class man1{ public function show() { echo "Hello World!"; }}//由于show方法中没有this,所以不出错man1::show();class man2{ public static $a = 1; public function show() { self::$a; echo "Hello World!"; }}//由于show方法中没有this,所以不出错man2::... 阅读全文
posted @ 2012-12-03 23:45 思齐_ 阅读(5813) 评论(0) 推荐(0) 编辑