예제 #1
0
/**
 * Creates new timer. This timer is already stopped and have specified time value.
 *
 * @param array $tags An array of tags and their values in the form of "tag" => "value". Cannot contain numeric indexes for obvious reasons.
 * @param integer $value Timer value for new timer.
 * @param array $data Optional array with user data, not sent to the server.
 *
 * @return resource Always returns new timer resource.
 * @link https://github.com/tony2001/pinba_engine/wiki/PHP-extension#pinba_timer_add
 */
function pinba_timer_add(array $tags, $value, array $data = array())
{
    return pinba::timer_add($tags, $value, $data);
}