gpt4 book ai didi

shell - 运行 CakePHP Shell 脚本

转载 作者:行者123 更新时间:2023-12-03 15:53:08 26 4
gpt4 key购买 nike

我创建了一个shell脚本如下

<?php

class EmailShell extends AppShell
{
public function main()
{
$this->out('Hello world.');
}
}

当我在命令行中导航到 Console 文件夹并输入 时蛋糕邮箱 我收到以下错误。
Error: Shell class EmailShell could not be found.
#0 C:\wamp\www\gitgrow\lib\Cake\Console\ShellDispatcher.php(167): ShellDispatche
r->_getShell('email')
#1 C:\wamp\www\gitgrow\lib\Cake\Console\ShellDispatcher.php(69): ShellDispatcher
->dispatch()
#2 C:\wamp\www\gitgrow\app\Console\cake.php(33): ShellDispatcher::run(Array)
#3 {main}

最佳答案

创建一个在控制台中使用的 shell 。对于这个例子,我们将创建一个简单的 Hello world shell。在您的应用程序控制台/命令目录中创建 EmailShell.php。将以下代码放入其中:

class EmailShell extends AppShell {
public function main() {
$this->out('Hello world.');
}
}

然后运行这个命令:
Console/cake email

或者
cake email

关于shell - 运行 CakePHP Shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11555942/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com