Merge array recursively in PHP

Merge array recursively in PHP

If you want merge array recursively in php then you can use array_merge_recursive function. It will merge all the array elements having same string keys and it returns the resulting array. Syntax: Note :- Values in the input array with numeric keys will be renumbered with incrementing keys starting from zero in the result array….

Read More
New features in PHP 5.6

New features in PHP 5.6

Here is list of New features in PHP 5.6 1) Variadic functions via …2) Argument unpacking via …3) Changes in File uploads4) Importing namespace functions5) Exponentiation Operator in PHP (**) 1) Variadic functions via … Currently variadic functions are implemented by fetching the function arguments using func_get_args() . If we want to pass random number…

Read More
What’s new in ansible 1.6

What’s new in ansible 1.6

Below are the list of new changes , Modules in Ansible 1.6 Major features/changes in Ansible 1.6: The deprecated legacy variable templating system has been finally removed. Use {{ foo }} always not $foo or ${foo}. Any data file can also be JSON. Use sparingly — with great power comes great responsibility. Starting file with…

Read More
getting started with FuelPHP

Getting Started with FuelPHP

Getting Started with FuelPHP FuelPHP is a simple, flexible, community driven PHP 5 web framework. It was born out of the frustrations people have with the current available frameworks and developed with support from a community of developers. FuelPHP is extremely portable, works on almost any server and prides itself on clean syntax. Installations:- Follow…

Read More

Writing custom module in ansible

While Writing custom module in ansible in ansible you need to setup ansible environment.  If you are not aware from it you can follow step by step instruction  in my post “Getting started with ansible“ After successfully setup ansible environment create your module directory inside “library/”. I have created module directory named “custom_module/” and module…

Read More
Verified by MonsterInsights