示例#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;
 }