Skip to content

Commit

Permalink
Merge pull request yiisoft#17 from shi-yang/master
Browse files Browse the repository at this point in the history
Create tutorial-console.md
  • Loading branch information
shi-yang committed Aug 30, 2015
2 parents 4a336d7 + 01c1697 commit 85b31b9
Show file tree
Hide file tree
Showing 4 changed files with 207 additions and 27 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
180 changes: 180 additions & 0 deletions docs/guide-zh-CN/tutorial-console.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
控制台命令
==========

除了用于构建 Web 应用程序的丰富功能,Yii 中也有一个拥有丰富功能的控制台,它们主要用于创建网站后台处理的任务。

控制台应用程序的结构非常类似于 Yii 的一个 Web 应用程序。它由一个或多个 [[yii\console\Controller]] 类组成,它们在控制台环境下通常被称为“命令”。每个控制器还可以有一个或多个动作,就像 web 控制器。

两个项目模板(基础模版和高级模版)都有自己的控制台应用程序。你可以通过运行 `yii` 脚本,在位于仓库的基本目录中运行它。
当你不带任何参数来运行它时,会给你一些可用的命令列表:

![Running ./yii command for help output](images/tutorial-console-help.png)

正如你在截图中看到,Yii 中已经定义了一组默认情况下可用的命令:

- [[yii\console\controllers\AssetController|AssetController]] - 允许合并和压缩你的 JavaScript 和 CSS 文件。你也可以在 [资源 - 使用 asset 命令](structure-assets.md#using-the-asset-command) 一节获取等多信息。
- [[yii\console\controllers\CacheController|CacheController]] - 清除应用程序缓存。
- [[yii\console\controllers\FixtureController|FixtureController]] - 管理用于单元测试 fixture 的加载和卸载。
这个命令的更多细节在 [Testing Section about Fixtures](test-fixtures.md#managing-fixtures).
- [[yii\console\controllers\HelpController|HelpController]] - 提供有关控制台命令的帮助信息,这是默认的命令并会打印上面截图所示的输出。
- [[yii\console\controllers\MessageController|MessageController]] - 从源文件提取翻译信息。
要了解更多关于这个命令的用法,请参阅 [I18N 章节](tutorial-i18n.md#message-command).
- [[yii\console\controllers\MigrateController|MigrateController]] - 管理应用程序数据库迁移。
[数据库迁移章节](db-migrations.md) 可获取更多信息。


用法 <span id="usage"></span>
-----

你可以使用以下语法来执行控制台控制器操作:

```
yii <route> [--option1=value1 --option2=value2 ... argument1 argument2 ...]
```

以上,`<route>` 指的是控制器动作的路由。选项将填充类属性,参数是动作方法的参数。

例如,将 [[yii\console\controllers\MigrateController::actionUp()|MigrateController::actionUp()]]
限制 5 个数据库迁移并将 [[yii\console\controllers\MigrateController::$migrationTable|MigrateController::$migrationTable]] 设置为 `migrations` 应该这样调用:

```
yii migrate/up 5 --migrationTable=migrations
```

> **注意**: 当在控制台使用 `*` 时, 不要忘记像 `"*"` 一样用引号来引起来,为了防止在 shell 中执行命令时被当成当前目录下的所有文件名。

入口脚本 <span id="entry-script"></span>
----------------

控制台应用程序的入口脚本相当于用于 Web 应用程序的 `index.php` 入口文件。
控制台入口脚本通常被称为 `yii`,位于应用程序的根目录。它包含了类似下面的代码:

```php
#!/usr/bin/env php
<?php
/**
* Yii console bootstrap file.
*/

defined('YII_DEBUG') or define('YII_DEBUG', true);

require(__DIR__ . '/vendor/autoload.php');
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');

$config = require(__DIR__ . '/config/console.php');

$application = new yii\console\Application($config);
$exitCode = $application->run();
exit($exitCode);
```

该脚本将被创建为你应用程序中的一部分;你可以根据你的需求来修改它。如果你不需要记录错误信息或者希望提高整体性能,`YII_DEBUG` 常数应定义为 `false`
在基本的和高级的两个应用程序模板中,控制台应用程序的入口脚本在默认情况下会启用调试模式,以提供给开发者更好的环境。


配置 <span id="configuration"></span>
-----

在上面的代码中可以看到,控制台应用程序使用它自己的配置文件,名为 `console.php` 。在该文件里你可以给控制台配置各种
[应用组件](structure-application-components.md) 和属性。

如果你的 web 应用程序和控制台应用程序共享大量的配置参数和值,你可以考虑把这些值放在一个单独的文件中,该文件中包括( web 和控制台)应用程序配置。
你可以在“高级”项目模板中看到一个例子。

> 提示:有时,你可能需要使用一个与在入口脚本中指定的应用程序配置不同的控制台命令。例如,你可能想使用 `yii migrate`
> 命令来升级你的测试数据库,它被配置在每个测试套件。要动态地更改配置,只需指定一个自定义应用程序的配置文件,通过 `appconfig`选项来执行命令:
>
> ```
> yii <route> --appconfig=path/to/config.php ...
> ```
创建你自己的控制台命令 <span id="create-command"></span>
----------------------
### 控制台的控制器和行为
一个控制台命令继承自 [[yii\console\Controller]] 控制器类。
在控制器类中,定义一个或多个与控制器的子命令相对应的动作。在每一个动作中,编写你的代码实现特定的子命令的适当的任务。
当你运行一个命令时,你需要指定一个控制器的路由。例如,路由 `migrate/create` 调用子命令对应的[[yii\console\controllers\MigrateController::actionCreate()|MigrateController::actionCreate()]] 动作方法。
如果在执行过程中提供的路由不包含路由 ID ,将执行默认操作(如 web 控制器)。
### 选项
通过覆盖在 [[yii\console\Controller::options()]] 中的方法,你可以指定可用于控制台命令(controller/actionID)选项。这个方法应该返回控制器类的公共属性的列表。
当运行一个命令,你可以指定使用语法 `--OptionName=OptionValue` 选项的值。
这将分配 `OptionValue` 到控制器类的 `OptionName` 属性。
If the default value of an option is of an array type and you set this option while running the command,
the option value will be converted into an array by splitting the input string on any commas.
### 参数
除了选项,命令还可以接收参数。参数将传递给请求的子命令对应的操作方法。第一个参数对应第一个参数,第二个参数对应第二个参数,依次类推。
命令被调用时,如果没有足够的参数,如果有定义默认值的情况下,则相应的参数将采取默认声明的值;如果没有设置默认值,并且在运行时没有提供任何值,该命令将以一个错误退出。
你可以使用 `array` 类型提示来指示一个参数应该被视为一个数组。该数组通过拆分输入字符串的逗号来生成。
下面的示例演示如何声明参数:
```php
class ExampleController extends \yii\console\Controller
{
// 命令 "yii example/create test" 会调用 "actionCreate('test')"
public function actionCreate($name) { ... }
// 命令 "yii example/index city" 会调用 "actionIndex('city', 'name')"
// 命令 "yii example/index city id" 会调用 "actionIndex('city', 'id')"
public function actionIndex($category, $order = 'name') { ... }
// 命令 "yii example/add test" 会调用 "actionAdd(['test'])"
// 命令 "yii example/add test1,test2" 会调用 "actionAdd(['test1', 'test2'])"
public function actionAdd(array $name) { ... }
}
```

### 退出代码

使用退出代码是控制台应用程序开发的最佳做法。通常,执行成功的命令会返回 `0`。如果命令返回一个非零数字,会认为出现错误。
该返回的数字作为出错代码,用以了解错误的详细信息。例如 `1` 可能代表一个未知的错误,所有的代码都将保留在特定的情况下:输入错误,丢失的文件等等。

要让控制台命令返回一个退出代码,只需在控制器操作方法中返回一个整数:

```php
public function actionIndex()
{
if (/* some problem */) {
echo "A problem occured!\n";
return 1;
}
// do something
return 0;
}
```

你可以使用一些预定义的常数:

- `Controller::EXIT_CODE_NORMAL` 值为 `0`;
- `Controller::EXIT_CODE_ERROR` 值为 `1`.

为控制器定义有意义的常量,以防有更多的错误代码类型,这会是一个很好的实践。

### 格式和颜色

Yii 支持格式化输出,如果终端运行命令不支持的话则会自动退化为非格式化输出。

要输出格式的字符串很简单。以下展示了如何输出一些加粗的文字:

```php
$this->stdout("Hello?\n", Console::BOLD);
```

如果你需要建立字符串动态结合的多种样式,最好使用 `ansiFormat`

```php
$name = $this->ansiFormat('Alex', Console::FG_YELLOW);
echo "Hello, my name is $name.";
```
46 changes: 23 additions & 23 deletions docs/guide-zh-CN/tutorial-i18n.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,39 @@ Yii 提供的国际化功能支持全方位信息翻译,视图翻译,日期

在 Yii中,我们经常用 “language” 来代表一个区域。

一个 Yii 应用使用两种语言:[[yii\base\Application::$sourceLanguage|source language]]
[[yii\base\Application::$language|target language]] 。前者指的是写在代码中的语言,后者是向最终用户显示内容的语言。
一个 Yii 应用使用两种语言:[[yii\base\Application::$sourceLanguage|源语言]]
[[yii\base\Application::$language|目标语言]] 。前者指的是写在代码中的语言,后者是向最终用户显示内容的语言。
而信息翻译服务主要是将文本消息从原语言翻译到目标语言。

可以用类似下面的应用程序配置来配置应用程序语言:

```php
return [
// set target language to be Russian
// 设置目标语言为俄语
'language' => 'ru-RU',

// set source language to be English
// 设置源语言为英语
'sourceLanguage' => 'en-US',

......
];
```

默认的 [[yii\base\Application::$sourceLanguage|source language]] 值是 `en-US`,即美国英语。
默认的 [[yii\base\Application::$sourceLanguage|源语言]] 值是 `en-US`,即美国英语。
建议你保留此默认值不变,因为通常让人将英语翻译成其它语言要比将其它语言翻译成其它语言容易得多。

你经常需要根据不同的因素来动态地设置 [[yii\base\Application::$language|target language]] ,如最终用户的语言首选项。
你经常需要根据不同的因素来动态地设置 [[yii\base\Application::$language|目标语言]] ,如最终用户的语言首选项。
要在应用程序配置中配置它,你可以使用下面的语句来更改目标语言:

```php
// change target language to Chinese
// 改变目标语言为中文
\Yii::$app->language = 'zh-CN';
```

## 消息翻译 <span id="message-translation"></span>

消息翻译服务用于将一条文本信息从一种语言(通常是 [[yii\base\Application::$sourceLanguage|source language]]
翻译成另一种语言(通常是 [[yii\base\Application::$language|target language]])。
消息翻译服务用于将一条文本信息从一种语言(通常是 [[yii\base\Application::$sourceLanguage|源语言]]
翻译成另一种语言(通常是 [[yii\base\Application::$language|目标语言]])。
它的翻译原理是通过在语言文件中查找要翻译的信息以及翻译的结果。如果要翻译的信息可以在语言文件中找到,会返回相应的翻译结果;
否则会返回原始未翻译的信息。

Expand Down Expand Up @@ -115,13 +115,13 @@ echo \Yii::t('app', 'This is a string to translate!');

```php
$username = 'Alexander';
// display a translated message with username being "Alexander"
// 输出:“Hello, Alexander
echo \Yii::t('app', 'Hello, {username}!', [
'username' => $username,
]);

$username = 'Qiang';
// display a translated message with username being "Qiang"
// 输出:“Hello, Qiang
echo \Yii::t('app', 'Hello, {username}!', [
'username' => $username,
]);
Expand Down Expand Up @@ -249,7 +249,7 @@ echo \Yii::t('app', 'It is {0, date, HH:mm}', time());
参数值为一个数并被格式化为它的字母拼写形式。 例如,

```php
// may produce "42 is spelled as forty-two"
// 输出:"42 is spelled as forty-two"
echo \Yii::t('app', '{n,number} is spelled as {n, spellout}', ['n' => 42]);
```

Expand All @@ -258,7 +258,7 @@ echo \Yii::t('app', '{n,number} is spelled as {n, spellout}', ['n' => 42]);
参数值为一个数并被格式化为一个序数词。 例如,

```php
// may produce "You are the 42nd visitor here!"
// 输出:"You are the 42nd visitor here!"
echo \Yii::t('app', 'You are the {n, ordinal} visitor here!', ['n' => 42]);
```

Expand All @@ -268,7 +268,7 @@ echo \Yii::t('app', 'You are the {n, ordinal} visitor here!', ['n' => 42]);
参数值为秒数并被格式化为持续的时间段。 例如,

```php
// may produce "You are here for 47 sec. already!"
// 输出:"You are here for 47 sec. already!"
echo \Yii::t('app', 'You are here for {n, duration} already!', ['n' => 47]);
```

Expand All @@ -279,9 +279,9 @@ echo \Yii::t('app', 'You are here for {n, duration} already!', ['n' => 47]);
取之以直接处理词形变化规则,它是足以面对某些词形变化语言的翻译。 例如,

```php
// When $n = 0, it may produce "There are no cats!"
// When $n = 1, it may produce "There is one cat!"
// When $n = 42, it may produce "There are 42 cats!"
// $n = 0 时,输出:"There are no cats!"
// $n = 1 时,输出:"There is one cat!"
// $n = 42 时,输出:"There are 42 cats!"
echo \Yii::t('app', 'There {n, plural, =0{are no cats} =1{is one cat} other{are # cats}}!', ['n' => $n]);
```

Expand All @@ -295,9 +295,9 @@ echo \Yii::t('app', 'There {n, plural, =0{are no cats} =1{is one cat} other{are
```

注意,上述信息主要是作为一个翻译的信息,而不是一个原始消息,除非设置应用程序的
[[yii\base\Application::$sourceLanguage|source language]]`ru-RU`
[[yii\base\Application::$sourceLanguage|源语言]]`ru-RU`

如果没有找到一个翻译的原始消息,复数规则 [[yii\base\Application::$sourceLanguage|source language]] 将被应用到原始消息。
如果没有找到一个翻译的原始消息,复数规则 [[yii\base\Application::$sourceLanguage|源语言]] 将被应用到原始消息。

要了解词形变化形式,你应该指定一个特定的语言,请参考
[rules reference at unicode.org](http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html)
Expand All @@ -308,7 +308,7 @@ echo \Yii::t('app', 'There {n, plural, =0{are no cats} =1{is one cat} other{are
可以使用 `select` 参数类型来选择基于参数值的短语。例如,

```php
// It may produce "Snoopy is a dog and it loves Yii!"
// 输出:"Snoopy is a dog and it loves Yii!"
echo \Yii::t('app', '{name} is a {gender} and {gender, select, female{she} male{he} other{it}} loves Yii!', [
'name' => 'Snoopy',
'gender' => 'dog',
Expand All @@ -325,7 +325,7 @@ echo \Yii::t('app', '{name} is a {gender} and {gender, select, female{she} male{
为了做到这一点以下内容需要添加到应用程序的配置:

```php
//configure i18n component
//配置 i18n 组件

'i18n' => [
'translations' => [
Expand Down Expand Up @@ -516,7 +516,7 @@ class TranslationEventHandler

### 使用 `message` 命令 <a name="message-command"></a>

翻译储存在 [[yii\i18n\PhpMessageSource|php files]][[yii\i18n\GettextMessageSource|.po files] 或者 [[yii\i18n\DbMessageSource|database]]
翻译储存在 [[yii\i18n\PhpMessageSource|php 文件]][[yii\i18n\GettextMessageSource|.po 文件] 或者 [[yii\i18n\DbMessageSource|数据库]]
具体见类的附加选项。

首先,你需要创建一个配置文件。确定应该保存在哪里,然后执行命令
Expand Down Expand Up @@ -548,7 +548,7 @@ class TranslationEventHandler
每当你调用 [[yii\base\View::renderFile()]] 或任何其它方法 (如 [[yii\base\Controller::render()]]) 来渲染 `views/site/index.php` 视图,
它最终会使用所翻译的 `views/site/ru-RU/index.php`

> 注意:如果 [[yii\base\Application::$language|target language]][[yii\base\Application::$sourceLanguage|source language]] 相同,
> 注意:如果 [[yii\base\Application::$language|目标语言]][[yii\base\Application::$sourceLanguage|源语言]] 相同,
在翻译视图的存在下,将呈现原始视图。


Expand Down
8 changes: 4 additions & 4 deletions docs/guide-zh-CN/tutorial-mailing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Yii 支持组成和发送电子邮件。然而,该框架提供的只有内容组成功能和基本接口。实际的邮件发送机制可以通过扩展提供,
因为不同的项目可能需要不同的实现方式,它通常取决于外部服务和库。

对于最常见的情况下你可以使用 [yii2-swiftmailer](https://github.com/yiisoft/yii2-swiftmailer) 官方扩展。
大多数情况下你可以使用 [yii2-swiftmailer](https://github.com/yiisoft/yii2-swiftmailer) 官方扩展。

配置
-------
Expand Down Expand Up @@ -98,7 +98,7 @@ use yii\helpers\Url;
为了通过视图文件撰写正文可传递视图名称到 `compose()` 方法中:

```php
Yii::$app->mailer->compose('home-link') // a view rendering result becomes the message body here
Yii::$app->mailer->compose('home-link') // 渲染一个视图作为邮件内容
->setFrom('[email protected]')
->setTo('[email protected]')
->setSubject('Message subject')
Expand Down Expand Up @@ -167,10 +167,10 @@ use yii\helpers\Html;
```php
$message = Yii::$app->mailer->compose();

// Attach file from local file system:
// 附件来自本地文件
$message->attach('/path/to/source/file.pdf');

// Create attachment on-the-fly
// 动态创建一个文件附件
$message->attachContent('Attachment content', ['fileName' => 'attach.txt', 'contentType' => 'text/plain']);
```

Expand Down

0 comments on commit 85b31b9

Please sign in to comment.