API15

API15:JText/sprintf

From Joomla! Documentation

Description

Passes a string thru an sprintf

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

sprintf($string)
Parameter Name Default Value Description
$string The format string

Defined in

libraries/joomla/methods.php

Importing

jimport( 'joomla.methods' );

Source Body

function sprintf($string)
{
        $lang =& JFactory::getLanguage();
        $args = func_get_args();
        if (count($args) > 0) {
                $args[0] = $lang->_($args[0]);
                return call_user_func_array('sprintf', $args);
        }
        return '';
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples