遵循PSR-4自动加载规范

This commit is contained in:
TOP糯米 2019-06-02 19:07:02 +08:00
parent 04107a40c5
commit 3db0e05509
44 changed files with 353 additions and 282 deletions

View File

@ -1,12 +1,12 @@
<?php
return [
'register' => [
'Twig' => \framework\library\template\Twig::class,
// 'Smarty' => \framework\library\template\Smarty::class,
// 'Top' => \framework\library\template\Top::class,
'Twig' => top\library\template\Twig::class,
// 'Smarty' => top\library\template\Smarty::class,
// 'Top' => top\library\template\Top::class,
],
'decorator' => [
application\home\decorator\Log::class
app\home\decorator\Log::class
],
'session' => [
'open' => true,
@ -16,9 +16,9 @@ return [
'driver' => 'MySQLi',
'host' => '127.0.0.1',
'user' => 'root',
'passwd' => '888888',
'dbname' => 'by_zh',
'prefix' => 'ot_',
'passwd' => 'root',
'dbname' => 'hongzheng',
'prefix' => 'cms_',
'charset' => 'utf8'
],
'view' => [
@ -26,9 +26,9 @@ return [
'ext' => 'html',
'dir' => '../application/home/view/',
'cacheDir' => './runtime/cache/application/home/',
// 'compileDir' => './runtime/compile/application/home/',
// 'left' => '{',
// 'right' => '}',
// 'cacheTime' => 5
'compileDir' => './runtime/compile/application/home/',
'left' => '{',
'right' => '}',
'cacheTime' => 5
],
];

View File

@ -1,8 +1,8 @@
<?php
namespace application\home\controller;
namespace app\home\controller;
use framework\library\Controller;
use top\library\Controller;
class Common extends Controller {

View File

@ -1,28 +1,21 @@
<?php
namespace application\home\controller;
namespace app\home\controller;
use framework\library\cache\FileCache;
use framework\library\Loader;
use framework\library\Database;
use app\home\model\Job;
class Index extends Common {
public function index() {
$model = Loader::model('Category');
FileCache::instance();
// return $model->where(['id' => ['>', 9]])->delete;
$db = Database::table('category');
$model = model(Job::class);
return [
'title' => '测试模型高级操作',
// 'lists' => $model->where('id', '>', 1)->order('id', 'desc')->limit(0, 100)->all,
'lists' => $db->where('id', '<', 5)->order('id', 'asc')->select(),
'lists' => $model->select(),
'query' => $model->sql
];
}
public function testPage() {
// return '测试页面';
return $this->fetch('', [
'a' => '测试页面',
]);

View File

@ -1,9 +1,9 @@
<?php
namespace application\home\decorator;
namespace app\home\decorator;
use framework\decorator\ifs\DecoratorIfs;
use framework\library\Register;
use top\decorator\ifs\DecoratorIfs;
use top\library\Register;
class Log implements DecoratorIfs {
@ -13,7 +13,7 @@ class Log implements DecoratorIfs {
/**
* @param array $data
* @throws \framework\library\exception\BaseException
* @throws \Exception
*/
public function after($data) {
// TODO: Implement after() method.

View File

@ -1,9 +0,0 @@
<?php
namespace application\home\model;
use framework\library\Model;
class Category extends Model {
}

View File

@ -1,13 +1,13 @@
<?php
namespace application\home\model;
namespace app\home\model;
use framework\library\Model;
use top\library\Model;
/**
* 模型示例
* Class Example
* @package application\home\model
* @package app\home\model
*/
class Example extends Model {

View File

@ -0,0 +1,9 @@
<?php
namespace app\home\model;
use top\library\Model;
class Job extends Model {
}

View File

@ -1,8 +1,8 @@
<?php
namespace framework;
namespace top;
use framework\library\App;
use top\library\App;
/**
* 框架入口
@ -21,14 +21,17 @@ class Framework {
private static $defaultAddress = 'home';
/**
* @throws library\exception\BaseException
* 执行
*/
public static function start() {
public static function startApp() {
header('content-type: text/html; charset=utf-8');
// 指定时区
date_default_timezone_set('PRC');
defined('DEBUG') || define('DEBUG', false);
require __DIR__.'/library/App.php';
require 'library/App.php';
App::start(self::$type, self::$defaultAddress);
}

View File

@ -1,11 +1,11 @@
<?php
namespace framework\decorator;
namespace top\decorator;
use framework\decorator\ifs\DecoratorIfs;
use framework\library\Register;
use framework\library\View;
use framework\library\cache\FileCache;
use top\decorator\ifs\DecoratorIfs;
use top\library\Register;
use top\library\View;
use top\library\cache\FileCache;
/**
* 初始化
@ -16,24 +16,29 @@ class InitDecorator implements DecoratorIfs {
/**
* 注册一些可能会用到的类
* @throws \framework\library\exception\BaseException
* @throws \Exception
*/
public function before() {
$route = Register::get('Router');
$sessionConfig = Register::get('Config')->get('session');
if (!empty($sessionConfig) && $sessionConfig['open'] === true)
if (!empty($sessionConfig) && $sessionConfig['open'] === true) {
session_start();
}
// 数据库驱动
$config = Register::get('Config')->get('db');
$driver = $config['driver'] ? $config['driver'] : 'MySQLi';
Register::set('DBDriver', function () use ($driver) {
$class = '\\framework\\library\\database\\driver\\' . $driver;
$class = '\\top\\library\\database\\driver\\' . $driver;
return $class::instance();
});
// 视图文件缓存
Register::set('ViewCache', function () {
return FileCache::instance();
});
// 配置文件中配置的注册
$initRegister = Register::get('Config')->get('register');
if (!empty($initRegister)) {
@ -43,14 +48,17 @@ class InitDecorator implements DecoratorIfs {
});
}
}
// 注册视图
Register::set('View', function () {
return View::instance();
});
// 加载系统函数库
require BASEDIR . '/framework/library/functions/functions.php';
require FRAMEWORK_PATH . 'library/functions/functions.php';
// 加载用户函数库
$funcFile = BASEDIR . '/' . APPNS . '/' . $route->module . '/functions.php';
$funcFile = APP_PATH . $route->module . '/functions.php';
if (file_exists($funcFile)) {
require $funcFile;
}

View File

@ -1,9 +1,9 @@
<?php
namespace framework\decorator;
namespace top\decorator;
use framework\decorator\ifs\DecoratorIfs;
use framework\library\Register;
use top\decorator\ifs\DecoratorIfs;
use top\library\Register;
/**
* 辅助控制器的装饰器
@ -19,7 +19,7 @@ class ReturnDecorator implements DecoratorIfs {
/**
* 布尔或数组则显示视图
* @param array $data
* @throws \framework\library\exception\BaseException
* @throws \top\library\exception\BaseException
*/
public function after($data) {
// TODO Auto-generated method stub

View File

@ -1,8 +1,8 @@
<?php
namespace framework\decorator;
namespace top\decorator;
use framework\decorator\ifs\DecoratorIfs;
use top\decorator\ifs\DecoratorIfs;
/**
* 辅助控制器的装饰器

View File

@ -1,5 +1,5 @@
<?php
namespace framework\decorator\ifs;
namespace top\decorator\ifs;
/**
* 默认装饰器接口

View File

@ -2,7 +2,7 @@
namespace system\extend;
use framework\library\Register;
use top\library\Register;
/**
* 分页类

View File

@ -2,7 +2,7 @@
namespace framework\extend;
use framework\library\Loader;
use top\library\Loader;
/**
* 文件上传类

View File

@ -1,6 +1,6 @@
<?php
namespace system\extend;
namespace top\extend;
/**
* 水印处理类

View File

@ -1,34 +1,41 @@
<?php
namespace framework\library;
namespace top\library;
use framework\library\exception\DatabaseException;
use framework\library\exception\RouteException;
use framework\library\route\Command;
use framework\library\route\Pathinfo;
use top\library\route\Command;
use top\library\route\Pathinfo;
class App {
/**
* @param int $type
* @param string $defaultAddress
* @throws exception\BaseException
* @throws exception\RouteException
*/
public static function start($type = 1, $defaultAddress = 'home') {
// 注册框架自动加载
require __DIR__ . '/Loader.php';
Loader::register();
require 'Loader.php';
$loader = new Loader();
$loader->set('top', FRAMEWORK_PATH);
$loader->set('app', APP_PATH);
$loader->register();
// composer自动加载
$composerLoadFile = BASEDIR . '/framework/vendor/autoload.php';
if (file_exists($composerLoadFile))
$composerLoadFile = FRAMEWORK_PATH . '/vendor/autoload.php';
if (file_exists($composerLoadFile)) {
require $composerLoadFile;
}
// 使用whoops美化异常输出
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$whoops->register();
// if (PHP_VERSION > 5.6)
// if (PHP_VERSION > 5.6) {
// set_error_handler([new BaseError(), 'handler']);
// }
// set_exception_handler([new BaseException(), 'handler']);
$routeDriver = '';
if (php_sapi_name() == 'cli') {
// 命令行运行程序
@ -43,14 +50,8 @@ class App {
// 其他
}
}
try {
// 实例化路由
$route = new Router($routeDriver, $defaultAddress);
$route->handler();
} catch (RouteException $route) {
exit($route->handler());
} catch (DatabaseException $db) {
exit($db->handler());
}
}
}

View File

@ -1,5 +1,5 @@
<?php
namespace framework\library;
namespace top\library;
/**
* 配置类
@ -11,9 +11,25 @@ class Config {
// 已加载的文件
private static $files;
private static $instance;
// 保存配置的变量
private $config = [];
private function __construct() {
}
private function __clone() {
// TODO: Implement __clone() method.
}
public static function instance() {
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
/**
* 添加配置
*
@ -25,6 +41,7 @@ class Config {
$config = [
$name => $value
];
// 与原有的配置项合并
$this->config = array_merge($this->config, $config);
}
@ -36,9 +53,9 @@ class Config {
* @throws \Exception
*/
public function get($name = '') {
// 加载文件
// 加载文件
$module = Register::get('Router')->module;
$file = BASEDIR . '/' . APPNS . '/' . $module . '/config/config.php';
$file = APP_PATH . $module . '/config/config.php';
if (! isset(self::$files[$file])) {
if (file_exists($file)) {
$config = require $file;
@ -47,6 +64,7 @@ class Config {
self::$files[$file] = true;
}
}
if (empty($this->config)
|| ! isset($this->config)
|| ! $this->config
@ -55,6 +73,7 @@ class Config {
) {
return [];
}
return $this->config[$name];
}

View File

@ -1,7 +1,6 @@
<?php
namespace framework\library;
use framework\library\Register;
namespace top\library;
/**
* 基础控制器
@ -18,20 +17,22 @@ abstract class Controller {
* @param int $code
* @param array $data
* @param array $ext
* @return string
* @return false|string
*/
public function json($msg, $code = 1, $data = [], $ext = []) {
return json_encode([
$array = [
'msg' => $msg,
'code' => $code,
'data' => $data,
'ext' => $ext
]);
];
return json_encode($array);
}
/**
* 缓存页面(具体视图驱动完成此功能)
* @param string $status
* @param bool $status
* @return $this
*/
public function cache($status = true) {
Register::get('View')->cache($status);
@ -40,8 +41,8 @@ abstract class Controller {
/**
* 赋值到视图
* @param string $name
* @param int|string|array $value
* @param $name
* @param $value
*/
public function param($name, $value) {
Register::get('View')->param($name, $value);
@ -51,8 +52,8 @@ abstract class Controller {
* 渲染视图
* @param string $file
* @param array $param
* @param string $cache
* @return unknown
* @param bool $cache
* @return mixed
*/
public function fetch($file = '', $param = [], $cache = false) {
return Register::get('View')->fetch($file, $param, $cache);
@ -68,10 +69,10 @@ abstract class Controller {
/**
* 显示提示页面
* @param string $message
* @param $message
* @param string $url
* @param number $sec
* @return string|\system\top\unknown
* @param int $sec
* @return false|mixed|string
*/
public function tips($message, $url = '', $sec = 3) {
if (request()->isAjax()) {

View File

@ -1,8 +1,8 @@
<?php
namespace framework\library;
namespace top\library;
use framework\library\database\ifs\DatabaseIfs;
use top\library\database\ifs\DatabaseIfs;
/**
* 数据库操作类
@ -58,7 +58,6 @@ class Database {
* Database constructor.
* @param $table
* @param $pk
* @throws exception\BaseException
*/
private function __construct($table, $pk) {
$driver = Register::get('DBDriver');
@ -68,6 +67,10 @@ class Database {
$this->setDriver($driver, Register::get('Config')->get('db'));
}
private function __clone() {
// TODO: Implement __clone() method.
}
/**
* 指定数据库驱动
*
@ -94,7 +97,7 @@ class Database {
/**
* 指定多张表
* @param $effect
* @return \system\library\Database
* @return \top\library\Database
*/
public function effect($effect) {
$this->effect = $effect;
@ -103,7 +106,7 @@ class Database {
/**
* @param $field
* @return \system\library\Database
* @return \top\library\Database
*/
public function distinct($field) {
$this->distinct = $field;
@ -113,7 +116,7 @@ class Database {
/**
* 设置操作字段
* @param $field
* @return \system\library\Database
* @return \top\library\Database
*/
public function field($field) {
$this->field = $field;
@ -122,7 +125,7 @@ class Database {
/**
* 设置条件
* @return \system\library\Database
* @return \top\library\Database
*/
public function where() {
$where = func_get_args();
@ -151,7 +154,7 @@ class Database {
/**
* 设置排序
* @return \system\library\Database
* @return \top\library\Database
*/
public function order() {
$order = func_get_args();
@ -167,7 +170,7 @@ class Database {
/**
* 设置记录范围
* @return \system\library\Database
* @return \top\library\Database
*/
public function limit() {
$limit = func_get_args();
@ -187,7 +190,7 @@ class Database {
* @param string $type
* @param string $table
* @param string $name
* @return \system\library\Database
* @return \top\library\Database
*/
public function join($type, $table, $name) {
$this->join[] = [
@ -201,7 +204,7 @@ class Database {
/**
* 多表关联
* @param string $on
* @return \system\library\Database
* @return \top\library\Database
*/
public function on($on) {
$this->on[] = $on;
@ -291,17 +294,20 @@ class Database {
* @return int|boolean
*/
public function delete($param = false) {
if (is_callable($param))
if (is_callable($param)) {
$param($this);
}
$field = $this->getPk();
if (!empty($this->join)) {
$this->table .= ' as this';
$field = 'this.' . $field;
}
if (!is_bool($param) && !is_callable($param))
if (!is_bool($param) && !is_callable($param)) {
$this->where([$field => $param]);
}
$result = self::$driver->delete($this->effect, $this->table, $this->join, $this->on, $this->where, $this->order, $this->limit);
$this->_reset();
return $result;
}
@ -313,14 +319,18 @@ class Database {
* @return mixed
*/
public function common($param, $type) {
if (is_callable($param))
if (is_callable($param)) {
$param($this);
if (!empty($this->join))
}
if (!empty($this->join)) {
$this->table .= ' as this';
if (empty($this->field) && $param && !is_callable($param))
}
if (empty($this->field) && $param && !is_callable($param)) {
$this->field = $param;
}
$result = self::$driver->common($this->table, $this->distinct, $this->field, $this->join, $this->on, $this->where, $type);
$this->_reset();
return $result;
}
@ -332,8 +342,10 @@ class Database {
*/
public function tableDesc($table = '') {
$table = ($table) ? $table : $this->table;
if (!isset(self::$tableDesc[$table]))
if (!isset(self::$tableDesc[$table])) {
self::$tableDesc[$table] = self::$driver->tableDesc($table);
}
return self::$tableDesc[$table];
}
@ -382,8 +394,10 @@ class Database {
$tableInfo = $this->tableDesc();
$pk = '';
foreach ($tableInfo as $value) {
if ($value['Key'] == 'PRI')
if ($value['Key'] == 'PRI') {
$pk = $value['Field'];
break;
}
}
return $pk;
}

View File

@ -1,55 +1,61 @@
<?php
namespace framework\library;
namespace top\library;
class Loader {
// 已加载的文件
private static $files;
protected $prefixes = [];
// 模型类实例
private static $classInstance = [];
public function register() {
spl_autoload_register([$this, 'loadClass']);
}
/**
* 文件自动加载
*/
public static function register() {
$autoload = function ($className = '') {
// 文件从未被加载过
if (!isset(self::$files[$className])) {
$classPath = str_replace('\\', '/', $className);
$file = BASEDIR . '/' . $classPath . '.php';
if (file_exists($file)) {
// 文件存在
self::$files[$className] = $file;
require $file;
} else if (file_exists(BASEDIR . '/composer.json')) {
self::$files[$className] = $file;
public function set($name, $path) {
if (isset($this->prefixes[$name])) {
array_push($this->prefixes[$name], $path);
} else {
$this->prefixes[$name] = [$path];
}
}
protected function loadClass($class) {
// 首次,将前缀等于当前类名
$prefix = $class;
// 从最后一个反斜杠开始分割前缀与类名
while (($pos = strrpos($prefix, '\\')) !== false) {
// 取出当前位置反斜杠分割的前缀
$prefix = substr($class, 0, $pos + 1);
// 取出分割出的实际类名
$className = substr($class, $pos + 1);
// 尝试去加载文件
$loadFile = $this->loadFile($prefix, $className);
if ($loadFile) {
return true;
}
$prefix = rtrim($prefix, '\\');
}
// 未找到文件
return false;
}
protected function loadFile($prefix, $class) {
// echo $class . '<br>';
$prefix = trim($prefix, '\\');
// 如果存在此前缀
if (isset($this->prefixes[$prefix])) {
// 遍历当前前缀下的目录
foreach ($this->prefixes[$prefix] as $key => $value) {
// 拼接文件名
$file = str_replace('\\', '/', $value . $class) . '.php';
/*echo '<br>';
echo $file . '<br>';*/
// 如果文件存在则加载文件
if (file_exists($file)) {
require $file;
return true;
}
}
}
return false;
}
}
return true;
};
spl_autoload_register($autoload);
}
/**
* 手动加载模型
* @param $name
* @param string $module
* @return mixed
*/
public static function model($name, $module = '') {
(!$module) && $module = Register::get('Router')->module;
if (!isset(self::$classInstance[$module . $name])) {
$className = '\\' . APPNS . '\\' . $module . '\\model\\' . $name;
if (class_exists($className)) {
self::$classInstance[$module . $name] = new $className();
} else {
self::$classInstance[$module . $name] = new Model($name);
}
}
return self::$classInstance[$module . $name];
}
}

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library;
namespace top\library;
/**
@ -8,7 +8,7 @@ namespace framework\library;
*
* @author topnuomi 2018年11月23日
*/
class Model {
abstract class Model {
// 数据库操作实例
private $db;
@ -37,9 +37,6 @@ class Model {
// 自动验证
protected $validate = [];
// 当前操作的数据仅能在insert、update操作后获取到操作的数据否则请使用模型data方法获取进行验证后的数据
private $data = [];
// 是否为insert操作决定如何验证数据
// true验证模型中配置的全部字段
// false仅验证$data中存在的字段
@ -62,8 +59,8 @@ class Model {
/**
* 影响的表仅多表delete
* @param string|array $effect
* @return \system\top\Model
* @param $effect
* @return $this
*/
public function effect($effect) {
$this->db->effect($effect);
@ -72,8 +69,8 @@ class Model {
/**
* 过滤重复值的字段
* @param string|array $field
* @return \system\top\Model
* @param $field
* @return $this
*/
public function distinct($field) {
$this->db->distinct($field);
@ -82,8 +79,8 @@ class Model {
/**
* 指定字段
* @param string|array $field
* @return \system\top\Model
* @param $field
* @return $this
*/
public function field($field) {
$this->db->field($field);
@ -92,7 +89,7 @@ class Model {
/**
* 查询条件
* @return \system\top\Model
* @return $this
*/
public function where() {
call_user_func_array([
@ -104,7 +101,7 @@ class Model {
/**
* 排序
* @return \system\top\Model
* @return $this
*/
public function order() {
call_user_func_array([
@ -116,7 +113,7 @@ class Model {
/**
* 限制
* @return \system\top\Model
* @return $this
*/
public function limit() {
call_user_func_array([
@ -131,7 +128,7 @@ class Model {
* @param $type
* @param $table
* @param $name
* @return \system\top\Model
* @return $this
*/
public function join($type, $table, $name) {
$this->db->join($type, $table, $name);
@ -141,7 +138,7 @@ class Model {
/**
* 多表
* @param $on
* @return \system\top\Model
* @return $this
*/
public function on($on) {
$this->db->on($on);
@ -462,7 +459,7 @@ class Model {
* @param $data
* @return bool
*/
private function validateCallUserFunction($key = '', $validate, $data) {
private function validateCallUserFunction($key, $validate, $data) {
$funcName = $validate[0];
$tips = end($validate);
// 将第一个值赋值为将要检查的值
@ -484,17 +481,16 @@ class Model {
/**
* 获取表结构
*
* @return array
* @param $table
* @return mixed
*/
public function tableDesc($table = '') {
public function tableDesc($table) {
return $this->db->tableDesc($table);
}
/**
* 获取信息
*
* @return string|mixed
* @return string
*/
public function getMessage() {
return $this->message;

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library;
namespace top\library;
/**
* 注册器
@ -12,6 +12,14 @@ class Register {
// 存放类的变量
public static $register;
private function __construct() {
}
private function __clone() {
// TODO: Implement __clone() method.
}
/**
* 注册类
*

View File

@ -1,13 +1,13 @@
<?php
namespace framework\library;
namespace top\library;
use framework\decorator\ifs\DecoratorIfs;
use framework\decorator\InitDecorator;
use framework\decorator\ReturnDecorator;
use framework\decorator\StringDecorator;
use framework\library\exception\RouteException;
use framework\library\route\ifs\RouteIfs;
use top\decorator\ifs\DecoratorIfs;
use top\decorator\InitDecorator;
use top\decorator\ReturnDecorator;
use top\decorator\StringDecorator;
use top\library\exception\RouteException;
use top\library\route\ifs\RouteIfs;
/**
* 路由类
@ -43,17 +43,20 @@ class Router {
$this->route = $route;
$this->route->default = $default;
$this->route->processing();
$this->module = $this->route->module;
$this->className = $this->route->className;
$this->class = $this->route->class;
$this->ctrl = $this->route->ctrl;
$this->action = $this->route->action;
$this->param = $this->route->param;
$this->check();
Register::set('Router', function () {
return $this->route;
});
Register::set('Config', function () {
return new Config();
return Config::instance();
});
}
@ -91,36 +94,45 @@ class Router {
*/
public function check() {
// 检查模块是否存在
if (!is_dir(BASEDIR . '/' . APPNS . '/' . $this->module))
if (!is_dir(APP_PATH . $this->module)) {
throw new RouteException('模块' . $this->module . '不存在');
}
// 检查控制器是否存在
if (!class_exists($this->className))
throw new RouteException('控制器' . $this->className . '不存在');
if (!class_exists($this->class)) {
throw new RouteException('控制器' . $this->class . '不存在');
}
// 检查方法在控制器中是否存在
if (!in_array($this->action, get_class_methods($this->className)))
if (!in_array($this->action, get_class_methods($this->class))) {
throw new RouteException('方法' . $this->action . '在控制器' . $this->ctrl . '中不存在');
}
}
/**
* 调用方法并执行程序
* @throws exception\BaseException
* @throws \Exception
*/
public function handler() {
$userDecorators = Register::get('Config')->get('decorator');
$systemDecorators = [InitDecorator::class, ReturnDecorator::class, StringDecorator::class];
$decorators = array_merge($systemDecorators, $userDecorators);
foreach ($decorators as $key => $value)
foreach ($decorators as $key => $value) {
$this->decorator(new $value());
}
$this->beforeRoute();
$object = new $this->className();
if (method_exists($object, '_init'))
$object = new $this->class();
if (method_exists($object, '_init')) {
$data = $object->_init();
}
if (!isset($data) || $data == null) {
$data = call_user_func_array([
$object,
$this->action
], $this->param);
}
$this->afterRoute($data);
}
}

View File

@ -1,7 +1,7 @@
<?php
namespace framework\library;
namespace top\library;
use framework\library\template\ifs\TemplateIfs;
use top\library\template\ifs\TemplateIfs;
/**
* 模板类
@ -26,11 +26,15 @@ class Template {
$this->template = $template->run();
}
private function __clone() {
// TODO: Implement __clone() method.
}
/**
* 获取实例
*
* @param TemplateIfs $template
* @return \system\library\Template
* @return \top\library\Template
*/
public static function instance($template) {
if (! self::$instance) {

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library;
namespace top\library;
/**
* 基础视图类
@ -38,6 +38,10 @@ class View {
$this->template = Template::instance($driver);
}
private function __clone() {
// TODO: Implement __clone() method.
}
/**
* 传递参数
* @param $name

View File

@ -1,7 +1,7 @@
<?php
namespace framework\library\cache;
namespace top\library\cache;
use framework\library\cache\ifs\CacheIfs;
use top\library\cache\ifs\CacheIfs;
class FileCache implements CacheIfs {
@ -22,7 +22,7 @@ class FileCache implements CacheIfs {
*
* {@inheritdoc}
*
* @see \system\library\cache\CacheIfs::set()
* @see \top\library\cache\CacheIfs::set()
*/
public function set($name = '', $value = '') {
// TODO Auto-generated method stub
@ -42,7 +42,7 @@ class FileCache implements CacheIfs {
*
* {@inheritdoc}
*
* @see \system\library\cache\CacheIfs::get()
* @see \top\library\cache\CacheIfs::get()
*/
public function get($name = '') {
// TODO Auto-generated method stub
@ -52,7 +52,7 @@ class FileCache implements CacheIfs {
*
* {@inheritdoc}
*
* @see \system\library\cache\CacheIfs::_unset()
* @see \top\library\cache\CacheIfs::_unset()
*/
public function _unset($name = '') {
// TODO Auto-generated method stub

View File

@ -1,5 +1,5 @@
<?php
namespace framework\library\cache\ifs;
namespace top\library\cache\ifs;
interface CacheIfs {

View File

@ -1,9 +1,9 @@
<?php
namespace framework\library\database\driver;
namespace top\library\database\driver;
use framework\library\database\ifs\DatabaseIfs;
use framework\library\exception\DatabaseException;
use top\library\database\ifs\DatabaseIfs;
use top\library\exception\DatabaseException;
/**
* Mysqli数据库驱动

View File

@ -1,5 +1,5 @@
<?php
namespace framework\library\database\ifs;
namespace top\library\database\ifs;
/**
* 数据库操作接口

View File

@ -1,8 +1,8 @@
<?php
namespace framework\library\error;
namespace top\library\error;
use framework\library\exception\BaseException;
use top\library\exception\BaseException;
use Throwable;
class BaseError extends \Error {

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library\exception;
namespace top\library\exception;
use Throwable;

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library\exception;
namespace top\library\exception;
use Throwable;

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library\exception;
namespace top\library\exception;
use Throwable;

View File

@ -4,10 +4,22 @@
* 调用请求类
*/
function request() {
$request = \framework\library\http\Request::instance();
$request = \top\library\http\Request::instance();
return $request;
}
function model($class) {
static $model = [];
if (!isset($model[$class])) {
if (class_exists($class)) {
$model[$class] = new $class();
} else {
$model[$class] = new \top\library\Model($class);
}
}
return $model[$class];
}
/**
* print_r
* @param array|string|int|object $value
@ -57,9 +69,10 @@ function get_table_name($classname) {
$arr = str_split($class);
for ($i = 0; $i < count($arr); $i++) {
$ord = ord($arr[$i]);
if ($ord > 64 && $ord < 91 && $i != 0)
if ($ord > 64 && $ord < 91 && $i != 0) {
$arr[$i - 1] = $arr[$i - 1] . '_';
}
}
$table = implode('', $arr);
return strtolower($table);
}
@ -69,7 +82,7 @@ function get_table_name($classname) {
* @return NULL|number|string
*/
function get_client_ip() {
return \request()->ip();
return request()->ip();
}
/**
@ -121,12 +134,12 @@ function filter($str) {
* @param $name
* @param string $value
* @return bool
* @throws \framework\library\exception\BaseException
* @throws Exception
*/
function session($name, $value = '') {
$config = \framework\library\Register::get('Config')->get('session');
$config = \top\library\Register::get('Config')->get('session');
if (empty($config) || !$config['prefix']) {
$route = \framework\library\Register::get('Route');
$route = \top\library\Register::get('Route');
$prefix = $route->module;
} else {
$prefix = $config['prefix'];

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library\http;
namespace top\library\http;
/**
* 请求类
@ -11,13 +11,13 @@ class Request {
private $server = [];
private static $instanct;
private static $instance;
public static function instance() {
if (!self::$instanct) {
self::$instanct = new self();
if (!self::$instance) {
self::$instance = new self();
}
return self::$instanct;
return self::$instance;
}
private function __construct() {

View File

@ -1,7 +1,7 @@
<?php
namespace framework\library\route;
namespace top\library\route;
use framework\library\route\ifs\RouteIfs;
use top\library\route\ifs\RouteIfs;
class Command implements RouteIfs {

View File

@ -1,11 +1,11 @@
<?php
namespace framework\library\route;
namespace top\library\route;
use framework\library\route\ifs\RouteIfs;
use top\library\route\ifs\RouteIfs;
/**
* pathinfo如果运行环境不支持pathinfo则使用兼容模式
* pathinfo模式
*
* @author topnuomi 2018年11月19日
*/
@ -39,14 +39,11 @@ class Pathinfo implements RouteIfs {
public $param = [];
// 类名
public $className = '';
public $class = '';
/**
* 模块名
*
* {@inheritdoc}
*
* @see \system\core\route\ifs\RouteIfs::module()
* @return string
*/
public function module() {
if (isset($this->uriArray[0]) && $this->uriArray[0]) {
@ -58,10 +55,7 @@ class Pathinfo implements RouteIfs {
/**
* 控制器名
*
* {@inheritdoc}
*
* @see \system\core\route\ifs\RouteIfs::ctrl()
* @return string
*/
public function ctrl() {
if (isset($this->uriArray[1]) && $this->uriArray[1]) {
@ -73,10 +67,7 @@ class Pathinfo implements RouteIfs {
/**
* 具体执行的方法名
*
* {@inheritdoc}
*
* @see \system\core\route\ifs\RouteIfs::action()
* @return mixed|string
*/
public function action() {
if (isset($this->uriArray[2]) && $this->uriArray[2]) {
@ -95,8 +86,8 @@ class Pathinfo implements RouteIfs {
unset($this->uriArray[1]);
unset($this->uriArray[2]);
$this->uriArray = array_merge($this->uriArray, []);
if (!empty($this->uriArray) && class_exists($this->className)) {
$paramName = (new \ReflectionMethod($this->className, $this->action))->getParameters();
if (!empty($this->uriArray) && class_exists($this->class)) {
$paramName = (new \ReflectionMethod($this->class, $this->action))->getParameters();
$paramNameArray = [];
for ($i = 0; $i < count($paramName); $i++) {
$paramNameArray[$paramName[$i]->name] = '';
@ -119,8 +110,7 @@ class Pathinfo implements RouteIfs {
/**
* 处理URI
*
* @return string
* @return mixed|string
*/
private function getUri() {
if (isset($_SERVER['PATH_INFO'])) {
@ -133,7 +123,7 @@ class Pathinfo implements RouteIfs {
$this->rawUri = $uri;
$paramArray = explode('/', $uri);
$name = $paramArray[0];
$file = BASEDIR . '/' . APPNS . '/route.php';
$file = APP_PATH . 'route.php';
if (file_exists($file)) {
$routeConfig = require $file;
if (isset($routeConfig[$name])) {
@ -165,7 +155,6 @@ class Pathinfo implements RouteIfs {
/**
* 根据URI得到带参数的数组
*
* @return array
*/
private function processUriArray() {
@ -174,13 +163,13 @@ class Pathinfo implements RouteIfs {
/**
* 返回解析出的数据 home/controller/index
* @throws \Exception
* @throws \ReflectionException
*/
public function processing() {
$this->uriArray = $this->processUriArray();
$this->module = $this->module();
$this->ctrl = $this->ctrl();
$this->className = '\\' . APPNS . '\\' . $this->module . '\\controller\\' . $this->ctrl;
$this->class = '\app\\' . $this->module . '\\controller\\' . $this->ctrl;
$this->action = $this->action();
$this->param = $this->param();
unset($this->uriArray);

View File

@ -1,5 +1,5 @@
<?php
namespace framework\library\route\ifs;
namespace top\library\route\ifs;
/**
* 路由接口

View File

@ -1,9 +1,9 @@
<?php
namespace framework\library\template;
namespace top\library\template;
use framework\library\Register;
use framework\library\template\ifs\TemplateIfs;
use top\library\Register;
use top\library\template\ifs\TemplateIfs;
class Smarty implements TemplateIfs {

View File

@ -1,10 +1,10 @@
<?php
namespace framework\library\template;
namespace top\library\template;
use framework\library\template\ifs\TemplateIfs;
use framework\library\Register;
use framework\library\template\tags\Tags;
use top\library\template\ifs\TemplateIfs;
use top\library\Register;
use top\library\template\tags\Tags;
/**
* 默认的视图驱动
@ -32,7 +32,7 @@ class Top implements TemplateIfs {
/**
* @return $this
* @throws \framework\library\exception\BaseException
* @throws \Exception
*/
public function run() {
// TODO: Implement run() method.
@ -62,7 +62,7 @@ class Top implements TemplateIfs {
* @param $file
* @param $param
* @return string
* @throws \framework\library\exception\BaseException
* @throws \Exception
*/
public function cacheFile($file, $param) {
if (isset($_SERVER['REQUEST_URI'])) {
@ -98,8 +98,8 @@ class Top implements TemplateIfs {
* @param $file
* @param $param
* @param $cache
* @return mixed|string
* @throws \framework\library\exception\BaseException
* @return false|mixed|string
* @throws \Exception
*/
public function fetch($file, $param, $cache) {
// TODO Auto-generated method stub

View File

@ -1,9 +1,9 @@
<?php
namespace framework\library\template;
namespace top\library\template;
use framework\library\Register;
use framework\library\template\ifs\TemplateIfs;
use top\library\Register;
use top\library\template\ifs\TemplateIfs;
use Twig\Environment;
use Twig\Loader\FilesystemLoader;

View File

@ -1,6 +1,6 @@
<?php
namespace framework\library\template\ifs;
namespace top\library\template\ifs;
/**
* 模板接口

View File

@ -1,7 +1,7 @@
<?php
namespace framework\library\template\tags;
namespace top\library\template\tags;
use framework\library\Register;
use top\library\Register;
/**
* 模板标签处理类

View File

@ -1,11 +1,11 @@
<?php
// 是否开启DEBUG模式
define('DEBUG', true);
// 目录
define('BASEDIR', __DIR__ . '/..');
// APP的根命名空间
define('APPNS', 'application');
// APP目录
define('APP_PATH', '../application/');
// 框架目录
define('FRAMEWORK_PATH', '../framework/');
// 加载框架
require BASEDIR . '/framework/Framework.php';
require '../framework/Framework.php';
\framework\Framework::start();
\top\Framework::startApp();