Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
function getmicrotime()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
$time_start = getmicrotime();
for ($i=0; $i < 100000; $i++)
{
[blue]print $i."\n";[/blue]
}
$time_end = getmicrotime();
$time = $time_end - $time_start;
echo "Did it in $time seconds\n";
print $i;
?>
<?
<?php
$foo = array ('one' => 'bar');
$bar = <<<EOSTRING
This is a heredoc string
EOSTRING;
print <<<EOOUTPUT
<html><body>
This is some output.<br>
$bar<br>
This is a value: {$foo['one']}
</body></html>
EOOUTPUT;
?>