PHP Classes

File: vendor/nikic/php-parser/test/code/prettyPrinter/expr/uvs.test

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/prettyPrinter/expr/uvs.test   Download  
File: vendor/nikic/php-parser/test/code/prettyPrinter/expr/uvs.test
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 288 bytes
 

Contents

Class file image Download
Uniform variable syntax
-----
<?php

(function() {})();
array(
'a', 'b')()();
A::$b::$c;
$A::$b[$c]();
$A::{$b[$c]}();
A::$$b[$c]();
(
$a->b)();
(
A::$b)();
-----
!!
php7
(function () {
})();
array(
'a', 'b')()();
A::$b::$c;
$A::$b[$c]();
$A::{$b[$c]}();
A::${$b}[$c]();
(
$a->b)();
(
A::$b)();