php - How does Laravel / What pattern does laravel use to find config variables? -
how laravel load config variables returning arrays? example:
custom.php
return ['foo' => 'bar']; how can file return something?
a.php
<?php return 'scripts can return things!'; b.php
<?php echo include 'a.php'; execute b.php , see happens.
Comments
Post a Comment