Visual Basic .NET <-> PHP | Variable use
Visual Basic .NET  
variable use
Description
nameData:
- name -
Output
- return - Any
Examples
Visual Basic .NET
Variable use the possible of use:x = 64 / 8   ' x=8
y = x / 0.5   ' y=16
z = (x * 2 / y +5)' z=1.1Visual Basic .NET
a and b
a or true
not a.
PHP  
$
Description
$nameData:
- name -
Output
- return - Any
Examples
PHP
Variable use the possible of use:$x = 64 / 8;   // x=8
$y = $x / 0.5;   // y=16
$z = ($x * 2 / $y +5);// z=1.1PHP
$a && $b
$a || true
!$aYou can find it in the following collections: value receiver | value sender
Variable use in another programming language:
Differences to: