Flow\Helper::format PHP Method

format() public static method

public static format ( $obj, $args )
    public static function format($obj, $args)
    {
        return call_user_func_array('sprintf', func_get_args());
    }

Usage Example

Beispiel #1
0
 public function test_format()
 {
     $this->assertEquals('Hello, World!', Helper::format('Hello, %s', 'World!'));
 }