commit c6d1509c5eef2bf16b65b109c2015104b642392a Author: topnuomi <1130395124@qq.com> Date: Tue May 21 22:00:28 2019 +0800 Upload diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..10ebc0e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Auto detect text files and perform LF normalization +* text=auto + +*.js linguist-language=php +*.css linguist-language=php +*.html linguist-language=php \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/application/home/config/config.php b/application/home/config/config.php new file mode 100644 index 0000000..c7f0900 --- /dev/null +++ b/application/home/config/config.php @@ -0,0 +1,34 @@ + [ + 'Twig' => \system\library\template\Twig::class, + // 'Smarty' => \system\library\template\Smarty::class, + // 'Top' => \system\library\template\Top::class, + ], + 'decorator' => [ + application\home\decorator\Log::class + ], + 'session' => [ + 'open' => true, + 'prefix' => 'home', + ], + 'db' => [ + 'driver' => 'MySQLi', + 'host' => '127.0.0.1', + 'user' => 'root', + 'passwd' => '888888', + 'dbname' => 'by_zh', + 'prefix' => 'ot_', + 'charset' => 'utf8' + ], + 'view' => [ + 'engine' => 'Twig', + 'ext' => 'html', + 'dir' => '../application/home/view/', + 'cacheDir' => './runtime/cache/application/home/', + // 'compileDir' => './runtime/compile/application/home/', + // 'left' => '{', + // 'right' => '}', + // 'cacheTime' => 5 + ], +]; \ No newline at end of file diff --git a/application/home/config/tags.php b/application/home/config/tags.php new file mode 100644 index 0000000..a1b26e6 --- /dev/null +++ b/application/home/config/tags.php @@ -0,0 +1,2 @@ +where(['id' => ['>', 9]])->delete; + $db = Database::table('category'); + return [ + 'title' => '测试模型高级操作', + // 'lists' => $model->where('id', '>', 1)->order('id', 'desc')->limit(0, 100)->all, + 'lists' => $db->where(['id'=>['>', 100]])->order('id asc')->limit(0, 10)->select(), + 'query' => $model->sql + ]; + } + + public function testPage() { + // return '测试页面'; + return $this->fetch('', [ + 'title' => '测试页面', + 'content' => 'fetch方法输出' + ]); + } + +} \ No newline at end of file diff --git a/application/home/decorator/Log.php b/application/home/decorator/Log.php new file mode 100644 index 0000000..601afc3 --- /dev/null +++ b/application/home/decorator/Log.php @@ -0,0 +1,27 @@ +module . '.'; + $message .= $router->ctrl . '.'; + $message .= $router->action; + echo $message; + } +} \ No newline at end of file diff --git a/application/home/functions.php b/application/home/functions.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/application/home/functions.php @@ -0,0 +1 @@ + 'user_type' + ]; + + protected $insertHandle = [ + '' => 'time', + '' => ['getIntTime', true] + ]; + + protected $updateHandle = [ + '' => ['getIntTime', true] + ]; + + // 出库 + protected $outHandle = [ + '' => [ + 1 => '一', + ] + ]; + + // 数据验证 + protected $validate = [ + '' => [ + ['notEqual', 0, 'tips'], + ['notNull', 'tips'] + ], + '' => ['notNull', 'tips'] + ]; + + /** + * 将字符串时间格式化为unix时间戳 + * + * @param $param + * @return false|int + */ + public function getIntTime($param) { + return strtotime($param); + } + +} \ No newline at end of file diff --git a/application/home/view/Common/base.html b/application/home/view/Common/base.html new file mode 100644 index 0000000..e199421 --- /dev/null +++ b/application/home/view/Common/base.html @@ -0,0 +1,18 @@ + + +
+ + + +t |
'+(n.content||"")+"
"),n.skin&&(n.anim="up"),"msg"===n.skin&&(n.shade=!1),s.innerHTML=(n.shade?"':"")+''+(c.content||"")+"
"),c.skin&&(c.anim="up"),"msg"===c.skin&&(c.shade=!1),f.innerHTML=(c.shade?"':"")+''.$content.'
'; + } +} \ No newline at end of file diff --git a/system/library/exception/BaseException.php b/system/library/exception/BaseException.php new file mode 100644 index 0000000..d78e88d --- /dev/null +++ b/system/library/exception/BaseException.php @@ -0,0 +1,253 @@ +file = $file; + if ($line) { + $this->line = $line; + } + parent::__construct($message, $code, $previous); + } + + public function syntaxHighlight($code) { + $code = preg_replace('/"(.*?)"/U', '"$1"', $code); + $code = preg_replace('/(\s)\b(.*?)((\b|\s)\()/U', '$1$2$3', $code); + $code = preg_replace('/(class)(.+)\s/', '$0', $code); + $code = preg_replace('/(\/\/)(.+)\s/', '$0', $code); + $code = preg_replace('/(\/\*.*?\*\/)/s', '$0', $code); + $code = preg_replace('/(\[|\{|\}|\])/', '$1', $code); + $code = preg_replace('/(\(|\)|\->|\=>)/', '$1', $code); + $code = preg_replace('/(\$[a-zA-Z0-9_]+)/', '$1', $code); + $code = preg_replace('/\b(print|echo|new|function|return|true|false|namespace|use|class|extends|implements)\b/', '$1', $code); + return $code; + } + + /** + * @param $filename + * @param $line + * @return string + */ + private function readErrorFile($filename, $line) { + $file = file($filename); + $totalLine = count($file); + $offset = 10; + $offsetStart = $line - $offset; + $offsetEnd = $line + $offset; + $start = ($offsetStart <= 0) ? 2 : $offsetStart; + $end = ($offsetEnd > $totalLine) ? $totalLine : $offsetEnd; + $content = ''; + for ($i = $start; $i <= $end; $i++) { + $content .= '' . $i . ''; + $content .= $this->syntaxHighlight(htmlspecialchars($file[$i - 1])) . ''; + } + return '' . $content . ''; + } + + /** + * @param \Exception|null $exception + */ + public function handler($exception = null) { + if (DEBUG) { + $message = htmlspecialchars($exception->getMessage()); + $file = $exception->getFile(); + $line = $exception->getLine(); + $trace = $exception->getTraceAsString(); + $content = '
{$message}
+'; + var_dump($value); + echo ''; +} + +/** + * 拼接链接(暂时先这样 + * + * @param string $url + * @param string|int $param + * @return string + */ +function u($url, $param = '') { + if (!empty($param) || is_numeric($param)) { + if (is_array($param)) { + $param = '/' . implode('/', $param); + } else { + $param = '/' . $param; + } + } + $url = ltrim($url, '/'); + return '/' . $url . $param . '.html'; +} + +/** + * 获取表名 + * @param $classname + * @return string + */ +function get_table_name($classname) { + $arr = explode('\\', $classname); + $class = end($arr); + $arr = str_split($class); + for ($i = 0; $i < count($arr); $i++) { + $ord = ord($arr[$i]); + if ($ord > 64 && $ord < 91 && $i != 0) + $arr[$i-1] = $arr[$i-1] . '_'; + } + $table = implode('', $arr); + return strtolower($table); +} + +/** + * 获取客户端IP + * @return NULL|number|string + */ +function get_client_ip() { + return \request()->ip(); +} + +/** + * 页面跳转 + * @param $url + */ +function redirect($url) { + header('location: ' . u($url)); + exit; +} + +/** + * 删除目录(包括子目录) + * @param string $dirName + */ +function remove_dir($dirName) { + $handle = @opendir($dirName); + if ($handle) { + while (false !== ($item = readdir($handle))) { + if ($item != "." && $item != "..") { + if (is_dir($dirName . '/' . $item)) { + remove_dir($dirName . '/' . $item); + } else { + unlink($dirName . '/' . $item); + } + } + } + closedir($handle); + rmdir($dirName); + } +} + +/** + * 过滤字符串 + * @param string $str + * @return string + */ +function filter($str) { + $replaceArr = array( + "/select\b|insert\b|update\b|delete\b|drop\b|;|\"|\'|\/\*|\*|\.\.\/|\.\/|union|into|load_file|outfile|dump/is" + ); + $str = preg_replace($replaceArr, '', $str); + $str = htmlspecialchars($str); + return $str; +} + +/** + * 框架session操作 + * @param $name + * @param string $value + * @return bool + * @throws \system\library\exception\BaseException + */ +function session($name, $value = '') { + $config = \system\library\Register::get('Config')->get('session'); + if (empty($config) || !$config['prefix']) { + $route = \system\library\Register::get('Route'); + $prefix = $route->module; + } else { + $prefix = $config['prefix']; + } + if ($value === '') { + if (isset($_SESSION[$prefix][$name])) { + return $_SESSION[$prefix][$name]; + } + return false; + } else if ($value === false) { + unset($_SESSION[$prefix][$name]); + } else { + $_SESSION[$prefix][$name] = $value; + } +} + +/** + * 二维数组排序操作 + * @param $arr + * @param $key + * @return mixed + */ +function assoc_unique($arr, $key) { + $tmp_arr = []; + foreach ($arr as $k => $v) { + if (in_array($v[$key], $tmp_arr)) {//搜索$v[$key]是否在$tmp_arr数组中存在,若存在返回true + unset($arr[$k]); + } else { + $tmp_arr[] = $v[$key]; + } + } + // sort($arr); //sort函数对数组进行排序 + return $arr; +} + +/** + * 改变图片大小 + * @param $imgSrc + * @param $resize_width + * @param $resize_height + * @param string $newName + * @param bool $isCut + * @return string + */ +function resize_image($imgSrc, $resize_width, $resize_height, $newName = '', $isCut = false) { + $im = @imagecreatefromstring(file_get_contents($imgSrc)); + $exif = exif_read_data($imgSrc); + if (!empty($exif['Orientation'])) { + switch ($exif['Orientation']) { + case 8: + $im = imagerotate($im, 90, 0); + break; + case 3: + $im = imagerotate($im, 180, 0); + break; + case 6: + $im = imagerotate($im, -90, 0); + break; + default: + + } + } + //图片的类型 + $type = substr(strrchr($imgSrc, "."), 1); + //目标图象地址 + $dstimg = (!$newName) ? $imgSrc : $newName . '.' . $type; + $width = imagesx($im); + $height = imagesy($im); + //生成图象 + //改变后的图象的比例 + $resize_ratio = ($resize_width) / ($resize_height); + //实际图象的比例 + $ratio = ($width) / ($height); + if (($isCut) == 1) { //裁图 + if ($ratio >= $resize_ratio) { //高度优先 + $newimg = imagecreatetruecolor($resize_width, $resize_height); + imagecopyresampled($newimg, $im, 0, 0, 0, 0, $resize_width, $resize_height, (($height) * $resize_ratio), $height); + ImageJpeg($newimg, $dstimg); + } + if ($ratio < $resize_ratio) { //宽度优先 + $newimg = imagecreatetruecolor($resize_width, $resize_height); + imagecopyresampled($newimg, $im, 0, 0, 0, 0, $resize_width, $resize_height, $width, (($width) / $resize_ratio)); + ImageJpeg($newimg, $dstimg); + } + } else { //不裁图 + if ($ratio >= $resize_ratio) { + $newimg = imagecreatetruecolor($resize_width, ($resize_width) / $ratio); + imagecopyresampled($newimg, $im, 0, 0, 0, 0, $resize_width, ($resize_width) / $ratio, $width, $height); + ImageJpeg($newimg, $dstimg); + } + if ($ratio < $resize_ratio) { + $newimg = imagecreatetruecolor(($resize_height) * $ratio, $resize_height); + imagecopyresampled($newimg, $im, 0, 0, 0, 0, ($resize_height) * $ratio, $resize_height, $width, $height); + ImageJpeg($newimg, $dstimg); + } + } + ImageDestroy($im); + //imgturn($dstimg, 1); + return $dstimg; +} + +/** + * 判断是否是移动端 + * @return bool + */ +function is_mobile() { + // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 + if (isset($_SERVER['HTTP_X_WAP_PROFILE'])) { + return true; + } + // 如果via信息含有wap则一定是移动设备,部分服务商会屏蔽该信息 + if (isset ($_SERVER['HTTP_VIA'])) { + // 找不到为flase,否则为true + return stristr($_SERVER['HTTP_VIA'], "wap") ? true : false; + } + // 脑残法,判断手机发送的客户端标志,兼容性有待提高 + if (isset ($_SERVER['HTTP_USER_AGENT'])) { + $clientkeywords = [ + 'nokia', + 'sony', + 'ericsson', + 'mot', + 'samsung', + 'htc', + 'sgh', + 'lg', + 'sharp', + 'sie-', + 'philips', + 'panasonic', + 'alcatel', + 'lenovo', + 'iphone', + 'ipod', + 'blackberry', + 'meizu', + 'android', + 'netfront', + 'symbian', + 'ucweb', + 'windowsce', + 'palm', + 'operamini', + 'operamobi', + 'openwave', + 'nexusone', + 'cldc', + 'midp', + 'wap', + 'mobile' + ]; + // 从HTTP_USER_AGENT中查找手机浏览器的关键字 + if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) { + return true; + } + } + // 协议法,因为有可能不准确,放到最后判断 + if (isset ($_SERVER['HTTP_ACCEPT'])) { + // 如果只支持wml并且不支持html那一定是移动设备 + // 如果支持wml和html但是wml在html之前则是移动设备 + if ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos($_SERVER['HTTP_ACCEPT'], 'text/html') === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos($_SERVER['HTTP_ACCEPT'], 'text/html')))) { + return true; + } + } + return false; +} + +// 模型自动验证函数 + +/** + * 检查是否为空 + * + * @param string|array $value + * @return boolean + */ +function notNull($value) { + if (is_array($value)) { + if (empty($value)) { + return false; + } + } else { + if (!$value && !is_numeric($value)) { + return false; + } + } + return true; +} + +/** + * 预置不等于判断 + * @param $value + * @param $value1 + * @return bool + */ +function notEqual($value, $value1) { + if ($value == $value1) { + return false; + } + return true; +} + +/** + * 长度判断 + * + * @param string $value + * @param int $min + * @param int $max + * @return boolean + */ +function isBetween($value, $min, $max) { + $length = mb_strlen($value, 'utf8'); + if ($length < $min || $length > $max) { + return false; + } + return true; +} \ No newline at end of file diff --git a/vendor/autoload.php b/vendor/autoload.php new file mode 100644 index 0000000..4cfeacd --- /dev/null +++ b/vendor/autoload.php @@ -0,0 +1,7 @@ + + * Jordi Boggiano