PHP 值轉正整數
/**
* 正整數
*
* @since 1.03.31
*
* @param mixed $maybeint
* @return int
*/
function pos_int($maybeint):int
{
return max(intval($maybeint), 0);
}
// Output
echo pos_int(0); // 0
echo pos_int(9); // 9
echo pos_int(-3); // 0
echo pos_int('test'); // 0