可能重复:
检查字符串是否为 unix 时间戳
我需要在 php 上使用正则表达式验证 unix 时间。例子:
<?php
is_unix( $unix )
{
if( preg_match( '/([0-9]+)/' , $unix ) )
{
return true;
}
return false;
}
?>
谢谢 ;)
可能重复:
检查字符串是否为 unix 时间戳
我需要在 php 上使用正则表达式验证 unix 时间。例子:
<?php
is_unix( $unix )
{
if( preg_match( '/([0-9]+)/' , $unix ) )
{
return true;
}
return false;
}
?>
谢谢 ;)