<?php class HelloWorld { public function sayHello($mixed): void { if (ctype_digit((string) $mixed)) { if ($mixed === 1) { echo '$mixed is 1'; } } } } $h = new HelloWorld(); $h->sayHello(1);
You have javascript disabled. You will not be able to edit any code.