PHP code example of didweb / ratioruntime
1. Go to this page and download the library: Download didweb/ratioruntime 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/ */
didweb / ratioruntime example snippets
use didweb\ratioruntime;
$calTime = new RatioRuntime();
// Ejeccucción del código a calcular.
echo "<br />Tiempo empleado: " . $calTime->endCal();
use didweb\ratioruntime;
$calTime = new RatioRuntime();
// Ausführung des zu berechnenden Codes.
echo "<br />Zeitaufwand: " . $calTime->endCal();
use didweb\ratioruntime;
$calTime = new RatioRuntime();
// Execution of the code to calculate.
echo "<br />Time spent: " . $calTime->endCal();