PHP is a server side scripting language used for web designing and development. PHP has become an industry standard before ASP.Net and others like Ruby, Java. The new PHP version released the latest version of PHP is PHP 7. which is claiming it to be twice as fast as its predecessor PHP 5.
- Advantages:
- Performance:
- Return Type:
public function area (float $r) : float { return 3.14*$r*$r;
}
-Spaceship Operator:
function sort ($a,$b)
{
if ($a>$b)
return 1;
else if ( $a ==$b)
return 0;
else
return -1;
}
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
PHP 5 vs PHP 7:
PHP is a server side scripting language used for web designing and development. PHP has become an industry standard before ASP.Net and others like Ruby, Java. The new PHP version released the latest version of PHP is PHP 7. which is claiming it to be twice as fast as its predecessor PHP 5.
- Advantages:
- Performance:
- Return Type:
-Spaceship Operator:
function sort ($a,$b) { if ($a>$b) return 1; else if ( $a ==$b) return 0; else return -1; }In PHP 7:
function sort ($a,$b) { return $a < = > $b; }- Null Coalesce Operator:
if (isset ($_GET [‘name’])) { $name = $_GET [‘name’]; } else $name = null;In PHP 7: