I have a large "config" array that I want to store in a different file (taking this practice from Laravel's config files).
After storing it in app/config/myconfig.php
<?php
return array(
'foo' => 'bar',
);
How would I call this in my code if I wanted to assign it? E.g. $myarray = app/config/myconfig.php