You can always check what's available on your system
echo 'Uppercase letters'.PHP_EOL;
for ($i = 0x41; $i < 0x5b ; ++$i)
{
printf('%%%s: %s%s',
chr($i),
strftime('%'.chr($i)),
PHP_EOL
);
}
echo PHP_EOL.'Lowercase letters'.PHP_EOL;
for ($i = 0x61; $i < 0x7b ; ++$i)
{
printf('%%%s: %s%s',
chr($i),
strftime('%'.chr($i)),
PHP_EOL
);
}