Brotherline AnonSec • Shell
SRV 162.240.68.55 YOU 216.73.217.80 USER tywatomy (1003) 7.4.33 DOMAINS 6 Domains
MySQL cURL WGET Perl Python Sudo
Disabled: exec,passthru,shell_exec,system  •  OS: Linux server.ariapress.org 3.10.0-1160.119.1.el7.tuxcare.els22.x86_64 #1 SMP Mon Aug 18 06:07:12 UTC 2025 x86_64  •  Webserver: Apache
/home/tywatomy/public_html/KodExplorer-master/app/core/Model.class.php
<?php
/*
* @link http://kodcloud.com/
* @author warlee | e-mail:kodcloud@qq.com
* @copyright warlee 2014.(Shanghai)Co.,Ltd
* @license http://kodcloud.com/tools/license/license.txt
*/

/**
 * 模型抽象类
 * 一个关于各种模型的基本行为类,每个模型都必须继承这个类的方法
 */

abstract class Model {
	var $db = null;
	var $in;
	var $config;

	/**
	 * 构造函数
	 * @return Null 
	 */
	function __construct(){
		global $config, $in;
		$this -> in = &$in;
		$this -> config = &$config;
	}
	
	/**
	 * TODO db 
	 */
	function db(){
		if ($this ->db != NULL) {
			return $this ->db;
		}else{
		}
	}
}
Anon7 — 2022  •  AnonSec Team