<?php class Color { public function __construct(public string $name) {} } $white = new Color("white"); $blue = new Color("blue"); foreach([ 'white == blue' => $white == $blue, 'white === blue' => $white === $blue, 'white == white' => $white == new Color("white"), 'white === white' => $white === new Color("white"), ] as $m => $v) { $v = $v ? "true" : "false"; echo "$m: $v\n"; }
You have javascript disabled. You will not be able to edit any code.