Skip to content

Instantly share code, notes, and snippets.

@belichuk
belichuk / test.php
Created June 24, 2014 21:55
patTemplate vs. Twig
<?php
function microtime_float()
{
list($usec, $sec) = explode(' ', microtime());
return ((float)$usec + (float)$sec);
}
require_once "../sqlconn.php";
$params = array(
'doctype' => '<!DOCTYPE html>',