Thinkphp 自定义扩展类
1、编写类
<?php
class My {
public function abc(){
echo 'My->abc()....';
}
}
2、把类放在thinkphp目录下的Libray/ORG/Util/My.class.php 中
3. 在程序中直接使用
class IndexAction extends Action {
public function index() {
import('ORG.Util.My');// 导入类
$my = new My();
$my->abc();
$this->display ();
}
}