Files
php_8/expr/object_compare.php
2022-04-15 21:17:40 +03:00

6 lines
105 B
PHP

<?php
class AgentSmith {}
$smit = new AgentSmith();
$wesson = new AgentSmith();
echo ($smit == $wesson);