<?php $values = [ 'string-blank' => ' ', 'string-empty' => '', 'string-leading-zero' => '01', 'string-word' => 'foo', ]; var_dump(array_map(static function (string $value): bool { return ctype_digit($value); }, $values));
You have javascript disabled. You will not be able to edit any code.