Showing 10 of 1,204 results.

PHP Slow Response Times

When developing PHP applications locally, sometimes the performance is not as great as it could be, especially when working with frameworks such as Laravel or Symphony. One place to start looking to gain some performance is the realpath_cache_size...

Laravel Artisan Tinker: The buffer Command

…used at any time to view the contents of the buffer when entering multi-line expressions without interrupting the expression input. The following example sessions demonstrates the usage of the buffer command: 1 >>> function longFunction() { 2 ......

Laravel 5 Facades

Facades are a convenient way to access Laravel's components. Each facade is bound to some component already registered in the service container. Facades are typically used to provide a simpler interface to an complex underlying subsystem. While...

route($channel, $route) | Laravel 5 Facades

The route method allows for the sending of notifications in an ad-hoc fashion. The following example demonstrates the basic usage of the route method for sending a notification to someone who has purchased something: 1 Notification :: route ( '...

Laravel Collection Public API: implode

…implode function, the returned value is a string with the glue between each item. The following code example demonstrates how to use the implode function to combine a simple array of primitive data types. When using implode in this context, the...

Filter Search