Home | Mirror | SearchITEYE 博客 | OSChina 博客 | 51CTO 博客

第 2 章 Language Reference

目录

2.1. 常量
2.1.1. __FUNCTION__
2.2. php://stdin & php://stdout
2.3. Exception
2.4. Generator 生成器

2.1. 常量

2.1.1. __FUNCTION__

class News{

	public function __construct(){
	}
	public function add(){
		echo __FUNCTION__;
	}
}

$news = new News();
$news->add();
			
comments powered by Disqus