0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: function.count.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } function smarty_function_count($params, &$smarty) { extract($params); if (empty($var)) { $smarty->trigger_error("count: missing 'var' parameter"); return; } print(count($var)); } /* vim: set expandtab: */ ?>