"Laravel/artisan"의 두 판 사이의 차이

19번째 줄: 19번째 줄:
==같이 보기==
==같이 보기==
*[[라라벨 bootstrap/autoload.php]]
*[[라라벨 bootstrap/autoload.php]]
*[[라라벨 bootstrap/app.php]]
*[[artisan 명령어]]
*[[artisan 명령어]]


[[분류: /var/www/laravel]]
[[분류: /var/www/laravel]]

2016년 5월 16일 (월) 01:44 판

1 개요

/var/www/laravel/artisan
#!/usr/bin/env php
<?php
require __DIR__.'/bootstrap/autoload.php';
$app = require_once __DIR__.'/bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
$status = $kernel->handle(
    $input = new Symfony\Component\Console\Input\ArgvInput,
    new Symfony\Component\Console\Output\ConsoleOutput
);
$kernel->terminate($input, $status);
exit($status);

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}