
callable FilterCallable(string $input) : string; function foo(FilterCallable $filter) : string { return $filter('bar'); } foo(function (string $foo) : string { return trim($foo); }); list() construction: <?php // list($a, $b, $c) = array(1, 2, 3); [$a, $b, $c] = [1, 2, 3]; list("a" => $a, "b" => $b, "c" => $c) = array("a" => 1, "b" => 2, "c" => 3); ["a" => $a, "b" => $b, "c" => $c] = ["a" => 1, "b" => 2, "c" => 3]; list($a, $b) = array($b, $a); [$a, $b] = [$b, $a];
Symfony and command bus
SonataAdminBundle: Creating an Object from a List View (Part 2)
Yii 2.0: do not download client packages
Q & A Pro Yii # 2
API development for third-party applications (Laravel 5)
Development of a package for Laravel 5. - Step-by-step instruction on the example of a callback order form.
Why do PHP developers think MVC is an application architecture?
Installing PHP 7 (for php-fpm) using phpbrew + php 7 benchmarks
What a PHP Junior Developer Should Know
Expanded PHPixie Project Skeleton with Authentication and Admin Panel
CodeIgniter 4 Database Layer
The digest of interesting materials from the world of Drupal # 19
Efficient data structures for PHP 7
On which framework will you write a PHP application in 2016?Source: https://habr.com/ru/post/281306/
All Articles