This version of AoWoW is based on https://github.com/udw/udwbase and is not yet usable. An initial amount of testing has been finished, and you can import the aowow.sql database into your world database, and create a local copy of config.php.in as config.php to test this version. FirePHP (http://firephp.org/) has been added for testing purposes. Signed-off-by: TheLuda <theluda@getmangos.com>
24 lines
360 B
PHP
24 lines
360 B
PHP
<?php
|
|
/**
|
|
* Smarty plugin
|
|
* @package Smarty
|
|
* @subpackage plugins
|
|
*/
|
|
|
|
/**
|
|
* Get seconds and microseconds
|
|
* @return double
|
|
*/
|
|
function smarty_core_get_microtime($params, &$smarty)
|
|
{
|
|
$mtime = microtime();
|
|
$mtime = explode(" ", $mtime);
|
|
$mtime = (double)($mtime[1]) + (double)($mtime[0]);
|
|
return ($mtime);
|
|
}
|
|
|
|
|
|
/* vim: set expandtab: */
|
|
|
|
?>
|