Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /data/e/7/e76990b9-3372-4d88-8089-fce36e16744a/webperfection.net/sub/rady-nosu/wp-content/plugins/seo-ultimate/modules/class.su-module.php on line 1195
php5.5 and php5.6 new crazy futures | Real Solution for Your Problem!

February 6, 2015 | In: Programovanie

php5.5 and php5.6 new crazy futures

Some crazy stuff you can do with php5.5/5.6

 
        function omg(Callable...$omgs)
        {
            foreach ($omgs as $omg) {
                var_dump($omg($omg));
            }
        }

        omg('strlen'); // 6


        function omg2(array...$omgs)
        {
            foreach ($omgs as list($omg1, $omg2)) {
                var_dump($omg1($omg2));
            }
        }

        omg2(['strlen', 'two'], ['strlen', 'bar']); // 3, 3

Share This:

Comments are closed.