<?php
/**
* gTemplate Plugins
*
* @package gTemplate
* @subpackage Plugins
*/
/**
* gTemplate string_format modifier plugin
*
* Type: modifier<br>
* Name: string_format<br>
* Purpose: format strings via sprintf
*
* @version 1.0
* @author Tamas David (G-Lex) <glex at mittudomain.info>
* @link https://github.com/glex86/g-template-php G-Template Engine on Github
*
* @internal Some source codes are taken from Smarty
* @internal author Monte Ohrt <monte at ohrt dot com>
* @internal link http://smarty.net Smarty
*/
function tpl_modifier_string_format()
{
$_args = func_get_args();
$string = array_shift($_args);
return vsprintf($string, $_args);
}
|