Your IP address is: 154.6.12.143

New features in php -Contd

Return type declarations

PHP 7 adds support for return type declarations. Similarly to argument type declarations, return type declarations specify the type of the value that will be returned from a function. The same types are available for return type declarations as are available for argument type declarations.

<?php

function arraysSum(array …$arrays): array
{
return array_map(function(array $array): int { Read More »