6 lines
60 B
PHP
6 lines
60 B
PHP
|
|
<?php
|
||
|
|
$string = '123';
|
||
|
|
if(is_numeric(trim($string))) {
|
||
|
|
}
|
||
|
|
?>
|