예제 #1
0
파일: base.php 프로젝트: noccy80/lepton-ng
 /**
  * @description Test of __fmt() shorthand
  */
 function testfmt()
 {
     $this->assertEquals(__fmt(array('foo%s')), 'foo%s');
     $this->assertEquals(__fmt(array('foo%s', 'bar')), 'foobar');
 }
예제 #2
0
 public static function log($msgfmg)
 {
     $arg = func_get_args();
     self::__log(LOG_INFO, __fmt($arg));
 }