Skip to content

Instantly share code, notes, and snippets.

@eto4detak
Last active August 4, 2019 20:18
Show Gist options
  • Save eto4detak/fc6d2a51931f8b9868d7cc3cf8be2f2a to your computer and use it in GitHub Desktop.
Save eto4detak/fc6d2a51931f8b9868d7cc3cf8be2f2a to your computer and use it in GitHub Desktop.
php number
<?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