PHP Classes

File: tests/Node/Expr/Assign/AssignSource.php

Recommend this page to a friend!
  Classes of Natanael Simões   PHP Test Bed   tests/Node/Expr/Assign/AssignSource.php   Download  
File: tests/Node/Expr/Assign/AssignSource.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Test Bed
Test PHP scripts describing what they execute
Author: By
Last change:
Date: 4 years ago
Size: 121 bytes
 

Contents

Class file image Download
<?php

$a
= 10;
$d = $a << 2;
$c = $a + 5 + 2;
$b = $a > 5;
$e = 255;
$f = $d ^ $e;
$g = [1,3,5];
$h = ($a > $c) ? 1 : 2;