예제 #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;
 }