新网创想网站建设,新征程启航

为企业提供网站建设、域名注册、服务器等服务

php中laravel框架自带命令的实现方法

这篇文章主要介绍了php中laravel框架自带命令的实现方法,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:申请域名网站空间、营销软件、网站建设、龙湾网站维护、网站推广。

python有哪些常用库

python常用的库:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。

1、作为服务提供者,加载到程序中。

// config/app.php 中。
'providers' => [
    // 这个便是laravel自带的artisan命令提供者
    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
]

2、然后找到 Up/Down命令入口

/**
 * Register the command.
 *
 * @return void
 */
protected function registerUpCommand()
{
    $this->app->singleton('command.up', function () {
        return new UpCommand;
    });
}

3、DownCommand实现

class DownCommand extends Command
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'down';
 
    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Put the application into maintenance mode';
 
    /**
     * Execute the console command.
     *
     * @return void
     */
    public function fire()
    {
        // 关键点: 在当前存储目录/framework 下面创建一个 down文件
        touch($this->laravel->storagePath().'/framework/down');
 
        $this->comment('Application is now in maintenance mode.');
    }
}
 
 
// touch() 函数php文档解释
/**
 * Sets access and modification time of file
 * @link http://php.net/manual/en/function.touch.php
 * @param string $filename 

 * The name of the file being touched.  * 

 * @param int $time [optional] 

 * The touch time. If time is not supplied,  * the current system time is used.  * 

 * @param int $atime [optional] 

 * If present, the access time of the given filename is set to  * the value of atime. Otherwise, it is set to  * time.  * 

 * @return bool true on success or false on failure.  * @since 4.0  * @since 5.0  */ function touch ($filename, $time = null, $atime = null) {}

感谢你能够认真阅读完这篇文章,希望小编分享的“php中laravel框架自带命令的实现方法”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!


本文题目:php中laravel框架自带命令的实现方法
转载注明:http://www.wjwzjz.com/article/giogdc.html
在线咨询
服务热线
服务热线:028-86922220
TOP