"라라벨 bootstrap/autoload.php"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 2개는 보이지 않습니다)
3번째 줄: 3번째 줄:
;라라벨 bootstrap/autoload.php
;라라벨 bootstrap/autoload.php


<source lang='php'>
<syntaxhighlight lang='php'>
<?php
<?php
define('LARAVEL_START', microtime(true));
define('LARAVEL_START', microtime(true));
11번째 줄: 11번째 줄:
     require $compiledPath;
     require $compiledPath;
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[라라벨 bootstrap/app.php]]
*[[라라벨 스크립트]]
*[[라라벨 스크립트]]
*[[/var/www/laravel/artisan]]
*[[/var/www/laravel/artisan]]


==참고 자료==
==참고==
* https://github.com/laravel/laravel/blob/master/bootstrap/autoload.php
* https://github.com/laravel/laravel/blob/master/bootstrap/autoload.php


[[분류: laravel/bootstrap]]
[[분류: laravel/bootstrap]]
[[분류: .php]]
[[분류: .php]]

2020년 11월 2일 (월) 02:56 기준 최신판

1 개요[ | ]

라라벨 autoload.php
라라벨 bootstrap/autoload.php
<?php
define('LARAVEL_START', microtime(true));
require __DIR__.'/../vendor/autoload.php';
$compiledPath = __DIR__.'/cache/compiled.php';
if (file_exists($compiledPath)) {
    require $compiledPath;
}

2 같이 보기[ | ]

3 참고[ | ]

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