Another cool new future in PHP 7 allows to bind a closure to a specific object on run-time with the addition of Closure->call() function. This…
Leave a CommentTag: PHP7
PHP 7 is improved current PHP namespace implementation by introducing the concept of Group Use. This is the one of the coolest improvement to namespaces…
Leave a CommentYou can define a constant by using the define() function or by using the const keyword outside a class definition as of PHP 5.3.0. Once…
Leave a CommentPHP 4 constructors were preserved in PHP 5 alongside the new __construct().PHP 4 constructors are methods that have the same name as the class they…
1 CommentThe alternative PHP tags <% (and <%=), %>, <script language=”php”>, and </script> have been removed in PHP7. Additionally the asp_tags ini directive is removed. Trying…
Leave a CommentSpaceship operator() also know as Combined Comparison Operator. Basically this operator will offer combined comparison means, it will do greater-than, less-than and equal comparisons between…
1 Comment