`
文章列表
下载地址如下:http://101.110.118.47/isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1611.iso   打开VMware -> “文件” -> “新建虚拟机” -> 选中“自定义” -> 点击“下一步”  点击“下一步”  选中“稍后安装操作系统” -> 点击“下一步”  选中“Linux” -> 选择“CentOS” -> 点击“下一步” 输入虚拟机的名称和存放的位置,点击“下一步” 一般选择2GB,根据自己电脑的内存大小而言,点击“下一 ...
测试数据: CREATE TABLE IF NOT EXISTS `tb_user` ( `id` int(8) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `logintime` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; INSER ...
application\index\controller\Index.html <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index() { return $this->fetch(); } public function base () { return $this->fetch(); } } ...
使用上一篇的文章《验证码》,进行演示,链接如下: http://onestopweb.iteye.com/blog/2386499   使用layer插件来修改TP5的消息提示页面 application\common.php <?php /** * $msg 待提示的消息 * $url 待跳转的链接 * $icon 这里主要有两个,5和6,代表两种表情(哭和笑) * $time 弹出维持时间(单位秒) */ function alert($msg='',$url='',$icon='',$time=3){ $str='<script ...
application\index\controller\Index.php <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index() { return $this->fetch(); } public function check($code='') { $captcha = new \think\captcha ...
application\index\controller\Index.php <?php namespace app\index\controller; use think\Controller; use think\Request; class Index extends Controller { //文件上传表单 public function index() { return $this->fetch(); } //文件上传提交 public function upload() ...
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>UEditor 配置</title> </head> <body> <script id="container" name="content" type="text/plain" style="width:1000px;heigh ...
application\index\controller\Index.php <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index() { /* * session 函数助手 * // 赋值(当前作用域) session('name', 'thinkphp'); ...
config.php 修改为下面的两个参数: // 应用Trace 'app_trace' => true, 'trace' => [ // 内置Html Console 支持扩展 'type' => 'Console', ],   controller/Index.php 三种调试方法,推荐使用 trace <?php namespace app\index\controller; class Index { public function index() ...
<?php namespace app\index\controller; use think\Request; class Index { /** * 请求信息 * */ public function hello(Request $request,$name = 'World') { echo '获取当前访问的url地址:<br>'; $request = Request::instance(); // 获取当前URL地址 不含域名 ec ...
application\index\controller\Data.php <?php namespace app\index\controller; use think\Controller; use think\Db; class Data extends Controller { public function index($id=1) { $pagesize = 3;//显示每页的条数 $pagebegin = ($id-1) * $pagesize;//从哪里开始显示 $list = Db:: ...
添加数据 CREATE TABLE IF NOT EXISTS `think_data` ( `id` int(8) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL COMMENT '名称', `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; INSERT INTO `think ...
application\index\controller\Index.php <?php namespace app\index\controller; class Index extends Controller { public function hello($name = 'World') { return 'Hello,' . $name . '!'; } }   application\index\controller\Blog.php <?php namespace app\index\controll ...
添加数据: CREATE TABLE IF NOT EXISTS `think_data` ( `id` int(8) unsigned NOT NULL AUTO_INCREMENT, `data` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; INSERT INTO `think_data` (`id`, `data`) VALUES (1, 'onestopweb'), (2, 'php'), (3, 't ...
html5新增了一些语义化更好的标签元素。   结构元素article元素,表示页面中的一块与上下文不相关的独立内容,比如博客中的一篇文章。aside元素,表示article内容之外的内容,辅助信息。header元素,表示页面中一个内容区块 ...
Global site tag (gtag.js) - Google Analytics