Last active
August 4, 2019 20:18
-
-
Save eto4detak/fc6d2a51931f8b9868d7cc3cf8be2f2a to your computer and use it in GitHub Desktop.
php number
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$int_value = ctype_digit($value) ? intval($value) : null; | |
if ($int_value === null) | |
{ | |
echo 'null'; | |
}else{ | |
echo 'NUMBER'; | |
} | |
/*======================================================== | |
* только числа | |
========================================================*/ | |
echo filter_var('Фрезерный станок Start 1000', FILTER_SANITIZE_NUMBER_INT); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment