View file kernel/_function/num.php

File size: 450B
<?php
 ##################################################################
 ## Development by CoMMoN web site author http://mirmastera.ru   ##
 ## fportal web site scripts http://fportal.tk                   ##
 ## All rights reserved authors                                  ##
 ##################################################################
###=== Проверка чисел ===###
function num($str)
{
return abs(intval($str));
}
?>