这个能实现么?
class arrtostr_model extends array_model {
    //put your code here
    function  __destruct() {
        parent::__destruct();
    }
    function  __construct() {
        global $bay_config;
        include_once $bay_config['model_dir']."array_model.php";
    }
    
    function arrtostr(){}
}就是在构造函数里面包含父类的文件?