コード例 #1
0
function _uniqueId($prefix = '')
{
    return Underscore::uniqueId($prefix);
}
コード例 #2
0
ファイル: Underscore.php プロジェクト: brombal/underscore.php
 /**
  * @tags utilities
  */
 public function testUniqueId()
 {
     $a = _::uniqueId();
     $b = _::uniqueId();
     $this->variable($a)->isNotEqualTo($b);
 }