class Foo { public int $int = 1; public float $flt = 2.2; public array $arr = []; public bool $bool = false; public string $string; public callable $callable; public stdClass $std; public OtherThing $other; public $mixed; }
$a <=>= $b; // $a = ($a <=> $b); $a ==== $b; // $a = ($a === $b);
Source: https://habr.com/ru/post/280278/
All Articles