コード例 #1
0
ファイル: Ak.php プロジェクト: joeymetal/v1
 function &unsetStaticVar($name)
 {
     $refhack =& Ak::_staticVar($name, $refhackvar = null, true);
     return $refhack;
 }
コード例 #2
0
ファイル: user.php プロジェクト: joeymetal/v1
 /**
  * Sets the current user
  *
  * @param User $CurrentUser
  */
 function setCurrentUser($CurrentUser)
 {
     Ak::_staticVar('CurrentUser', $CurrentUser);
 }
コード例 #3
0
ファイル: base.php プロジェクト: bermi/sintags
 static function &unsetStaticVar($name)
 {
     $null = null;
     $refhack = Ak::_staticVar($name, $null, true);
     return $refhack;
 }