php yii 命令

php yii 敲回车

This is Yii version 2.0.11.

The following commands are available:

- asset Allows you to combine and compress
your JavaScript and CSS files.
asset/compress (default) Combines and compresses the asset
files according to the given
configuration.
asset/template Creates template of configuration
file for [[actionCompress]].

- cache Allows you to flush cache.
cache/flush Flushes given cache components.
cache/flush-all Flushes all caches registered in the
system.
cache/flush-schema Clears DB schema cache for a given
connection component.
cache/index (default) Lists the caches that can be
flushed.

- cron 计划任务
cron/stat

- delete-msg-info
delete-msg-info/index (default) 预览
delete-msg-info/int
delete-msg-info/run 执行

- email
email/daily-email 每天下午6点

- fixture Manages fixture data loading and
unloading.
fixture/load (default) Loads the specified fixture data.
fixture/unload Unloads the specified fixtures.

- help Provides help information about
console commands.
help/index (default) Displays available commands or the
detailed information
help/list List all available controllers and
actions in machine readable format.
help/list-action-options List all available options for the
$action in machine readable format.
help/usage Displays usage information for
$action

- message Extracts messages to be translated
from source files.
message/config Creates a configuration file for the
"extract" command using command line
options specified
message/config-template Creates a configuration file
template for the "extract" command.
message/extract (default) Extracts messages to be translated
from source code.

- migrate Manages application migrations.
migrate/create Creates a new migration.
migrate/down Downgrades the application by
reverting old migrations.
migrate/history Displays the migration history.
migrate/mark Modifies the migration history to
the specified version.
migrate/new Displays the un-applied new
migrations.
migrate/redo Redoes the last few migrations.
migrate/to Upgrades or downgrades till the
specified version.
migrate/up (default) Upgrades the application by applying
new migrations.

- move-mongo-files
move-mongo-files/index (default)
move-mongo-files/move-feedback
move-mongo-files/move-one-field

- msg-schedule
msg-schedule/index (default)

- pro-cost-stat 统计任务成本
pro-cost-stat/index (default)

- resque
resque/index (default) This command echoes what you have
entered as the message.

- resque-schedule
resque-schedule/index (default) This command echoes what you have
entered as the message.

- serve Runs PHP built-in web server
serve/index (default) Runs PHP built-in web server

- shell Runs interactive shell. That is
especially useful when developing an
application and you want to try
shell/index (default) Runs interactive shell

- tmp
tmp/device-name

- tools
tools/contribution 设置贡献率(最近半年
180天、15人bug探索)
tools/copycss
tools/copyimg
tools/device Des:更新apply_list报名表的设?
??表ID字段de_id
tools/get-contribution-stat Des:统计贡献率区间
tools/packjs
tools/pm-stat
tools/recall Des:定时执行召回方法
tools/set-bug-red-bags 设置bug红包
tools/set-pay-unusual-info Des:异常打款老数据处理
tools/visit

- user-contribution-stat 贡献率统计数据
user-contribution-stat/index (default)

To see the help of each command, enter:

yii help <command-name>

其中tools/packjs 会打包js

php yii tools/packjs 打包js和css 图片等资源

时间: 2024-11-26 00:39:36

php yii 命令的相关文章

Yii Framework入门教程

1    Yii是什么? 什么是Yii,Yii的官方解释可以概括为以下几点: Yii是一个高性能.组件化.面向大型Web应用的PHP开发框架.1. Yii的设计完全面向对象,基于完整的MVC编程思想:2. Yii的发音类似于英文Yee[ji:],或者汉语普通话的“易”:3. Yii是开源软件,基于BSD许可发布.4. 更多信息可参考Yii官方网站: http://www.yiiframework.com/   2    MVC是什么? 上文中提到MVC,到底什么是MVC呢: MVC -> M-V

YII2项目常用技能知识总结

1.不通过日志获取AR执行的原生SQL语句和打印变量数据 $query = User::find() ->select(['username'])->where(['id'=>[1,2,3,4]) // get the AR raw sql in YII2 $commandQuery = clone $query; echo $commandQuery->createCommand()->getRawSql();$users = $query->all(); 打印变量数

yii框架通过控制台命令创建定时任务

假设Yii项目路径为 /home/apps 1. 创建文件 /home/apps/web/protected/commands/console.php $yii = '/home/apps/framework/yii.php'; require_once($yii); $configFile = dirname(__FILE__).'/../config/console.php'; Yii::createConsoleApplication($configFile)->run(); 2. 修改配

yiic创建YII应用 &quot;php.exe&quot;不是内部或外部命令 解决办法

第一步:运行CMD命令. 第二步:进入Yiic文件的目录   (例如在D盘里面 D:/yii/framework) 第三步:D:\yii\framework>yiic webapp D:/xampp/htdocs/filename (D:/xampp/htdocs 为WebRoot,filename为要创建的应用名字) Create a Web application under 'D:\xampp\htdocs\mywebsite'? [yes|no] (提示是否创建应用) 在执行yiic w

yii crontab 命令使用 经测试

今天要用到crontab 项目是用的yii框架  于是乎 上网查了下看看怎么用 结果得到了不少提示 也被坑的好惨, 最后还是自己研究下然后实现了, 所以写此文以便解救迷雾中的道友 Yii的文件结构里呢 有个文件夹commands 若没有的话 自己建一个 看好目录的位置 和名字不要写错 Yii框架呢 他的公外部调用的命令都是放在这个文件夹下的 它的调用时靠protected/yiic.php 来做入口文件的 配置yiic代码 画红框的地方是需要注意的 可以看到 我在代码中注释掉了AB区域这个地方使

PHP框架 Yii framework 用yiic命令时提示“php.exe”不是内部或外部命令

原因是 Yii 自带的yiic.bat 找不到php.exe.解决方法: 用notepad++打开yii/framework/yiic.bat,修改if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe→→→ if "%PHP_COMMAND%" == "" set PHP_COMMAND=D:\wamp\php\php.exe 我的就是修改为if "%PHP_COMMAND

php的yii框架下开发环境xampp,vim,xdebug,DBGp的搭建

php的yii框架下开发环境xampp,vim,xdebug,DBGp的搭建 选择Linux桌面环境Deepin2014.1下开发网站的理由很简单,能截图,有搜狗输入法,可以WPS文档记录,终端下复制粘贴很容易,相比ubuntu,fedora死机次数少了,对,就是不用折腾,自带的. 先说vim和DBGp插件. Deepin2014.1简体中文,自带的vim7.4版本,很多配置已经很适合大陆的人使用了,比如Php和Python的调试支持等,不需要重新编译了.可以节省不少步骤.这里提供一个vim的配

Yii在window下的安装方法

首先,在http://www.yiichina.com/上下载yii 然后,配置系统环境变量,在win8下,按win+x,找到系统->高级系统设置->环境变量->path 把php的运行环境,加入到环境变量中,以分号隔开.如,我的是D:\wamp\bin\php\php5.4.12 在运行中输入php命令,会出现闪烁的下划线,说明环境变量配置成功. 最后,切换到yii目录下的framework目录下,执行下面的命令: php  yiic webapp  ../my_pro--------

yii advanced的安装

这里使用composer进行安装(请确保你已经安装过composer),我们打开yii中文网站,官网说明如下 通过 Composer 安装 这是安装Yii2.0的首选方法.如果你还没有安装Composer,你可以按照这里的说明进行安装. 安装完Composer,运行下面的命令来安装Composer Asset插件: php composer.phar global require "fxp/composer-asset-plugin:^1.2.0" 现在选择的应用程序模板之一,开始安装