Aligner add-on to support PHP.
=>
:
array(key => value,key2 => value2,key3 => value3,)
=
, +=
, -=
, etc:
$a = 2;$bcd = 3;$bcd += 4;
==
and ===
:
echo ($a == 1 ? 'one' :$a == 2 ? 'two' :$abc == 3 ? 'three' :$a === 3 ? 'three' :$a == 4 ? 'four' : 'other');
,
:
define( 'key', 'value' );define( 'key2', 'value2' );define( 'key3', 'value3' );
Aligner must be installed along with this package. For more information, please check out Aligner
,
and additional assignment operatorsGood catch. Let us know what about this package looks wrong to you, and we'll investigate right away.