Run ❯
Get your own PHP server
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
The PHP is_int() Function
Check if variable is of type integer:
"; $y = 59.85; var_dump(is_int($y)); ?>
The PHP is_int() Function
Check if variable is of type integer:
bool(true)
bool(false)