PHP code example of thenexxuz / utils
1. Go to this page and download the library: Download thenexxuz/utils library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thenexxuz / utils example snippets
$time = new MeasureTime();
/* Do some stuff */
echo $time->mark(); /* Total time since $time was instantiated */
/* Do more stuff */
echo $time->markInterval(); /* Time since last mark() */
/* Do even more stuff */
echo $time->mark(); /* Total time since $time was instantiated */