Page MenuHomeCode

modifier.yyyymmdd.php
No OneTemporary

modifier.yyyymmdd.php

<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty lower modifier plugin
*
* Type: modifier<br>
* Name: yyyymmdd<br>
* Purpose: Appends dashes to yyyymmdd string to output yyyy-mm-dd
* @author Wolfaeym
*/
function smarty_modifier_yyyymmdd(string $string) : string {
return substr($string, 0, 4) . '-' . substr($string, 4, 2)
. '-' . substr($string, 6, 2);
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Jul 10, 10:21 (4 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
23192
Default Alt Text
modifier.yyyymmdd.php (428 B)

Event Timeline