Migration to PDO database abstraction layer
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / node_methodz / function.rand.php
CommitLineData
51ff3226 1<?php
2function smarty_function_rand($params,&$smarty) {
3 if (is_numeric($params['min']) || is_numeric($params['max'])) {
4 $rand = rand($params['min'],$params['max']);
5 }
6 else $rand = rand();
7 $smarty->assign('rand',$rand);
8}
9?>
This page took 0.272962 seconds and 4 git commands to generate.