- var_dump: documentation ( source)
<?php declare(strict_types = 1);
class bar {
public const FLAG = 0b0010;
public static function foo(string $v, int $flags) {
if ((($flags & self::FLAG) && !isset($v[0]))) {
return true;
}
return false;
}
}
var_dump(bar::foo('', 0b0010));