PHP code example of filmtools / secondstominutes
1. Go to this page and download the library: Download filmtools/secondstominutes 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/ */
filmtools / secondstominutes example snippets
use function FilmTools\SecondsToMinutes\seconds2minutes;
use FilmTools\SecondsToMinutes\SecondsToMinutes;
echo seconds2minutes( 3900 ); // "01:05:00"
$formatter = new SecondsToMinutes;
echo $formatter( 90 ); // "01:30"
$filter = new \Twig\TwigFilter('secondstominutes', new SecondsToMinutes);
$twig->addFilter( $filter );