上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: yii2的入口文件 web/index.php <?phpdefined('YII_DEBUG') or define('YII_DEBUG', true); /** *在开发环境的时间要开启debug,在项目完成提交运营时,则是关闭状态;默认是关闭状态 */defined('YII_ENV') o 阅读全文
posted @ 2017-03-27 11:06 直到无限宇宙 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.通过看源代码,对yii的框架学习有了更多的认识和理解 assets 前端资源文件夹,用于管理css js等前端资源文件等 commands 包含命令行命令,文件为控制器文件 config 应用的配置文件 controllers 控制器文件 mail (应用的前后台和命令行的与邮件相关的布局文件等 阅读全文
posted @ 2017-03-27 10:55 直到无限宇宙 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 真实静态通常是为了更好的缓解服务器压力,和增强搜索引擎的友好面,所以都将网页内容生成静态页面。但最大缺陷是每次在网站后台修改网页内容都需要重新生成静态页面,无法实时显示更新的内容,而久之网站内容多了,占用的空间大小以及每次生成静态页面所耗费的服务器资源也不容小觑(有出现内容过多且一次性生成静态页面而 阅读全文
posted @ 2017-03-27 10:27 直到无限宇宙 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 一个contoller CustomerController里怎么调用另一个controller里的action,Acontoller调用SiteContoller的actionShow($id), url显示上是Customer/index 不带参数的actionShow() redirect使用 阅读全文
posted @ 2017-03-24 11:29 直到无限宇宙 阅读(1661) 评论(0) 推荐(0) 编辑
摘要: 1.与上一种相同,可以通过composer 安装,安装命令:composer require “janisto/yii2-timepicker” “*” 直接等待命令完成就可以了; 2.手动安装 a)下载地址:https://github.com/janisto/yii2-timepicker,下载 阅读全文
posted @ 2017-03-23 14:06 直到无限宇宙 阅读(2763) 评论(0) 推荐(0) 编辑
摘要: Yii2中对于表单和字段的支持组件为ActiveForm和ActiveField, 上述代码生成两个带默认标签名(如Username,Password)的表单输入框(input)。 如果想更改输入框的标签及其样式,有两个方式,一个是通过labelOptions参数: [php] view plain 阅读全文
posted @ 2017-03-22 09:48 直到无限宇宙 阅读(350) 评论(0) 推荐(0) 编辑
摘要: <body leftmargin=0 topmargin=0 oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empt 阅读全文
posted @ 2017-03-19 12:24 直到无限宇宙 阅读(18001) 评论(1) 推荐(0) 编辑
摘要: <?PHP use yii\widgets\LinkPager; //使用分页 use yii\widgets\ActiveForm; use yii\helpers\Url; use yii\helpers\Html; ?> //其中$model是控制器层new model 得到的 阅读全文
posted @ 2017-03-02 13:16 直到无限宇宙 阅读(295) 评论(0) 推荐(0) 编辑
摘要: /** * + * 生成UUID 单机使用 * + * * @access public + * @return string + */ public function uuid() { $charid = md5(uniqid(mt_rand(), true)); $hyphen = chr(45 阅读全文
posted @ 2017-02-25 21:09 直到无限宇宙 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 调用YII框架中 jquery:Yii::app()->clientScript->registerCoreScript('jquery'); framework/web/js/source的js,其中registerCoreScript key调用的文件在framework/web/js/pack 阅读全文
posted @ 2017-02-23 22:02 直到无限宇宙 阅读(1080) 评论(1) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页