PHPRtfLite::unregisterAutoloader PHP 메소드

unregisterAutoloader() 공개 정적인 메소드

unregisters autoloader for PHPRtfLite classes
public static unregisterAutoloader ( ) : boolean
리턴 boolean
    public static function unregisterAutoloader()
    {
        return spl_autoload_unregister(array('PHPRtfLite_Autoloader', 'autoload'));
    }

Usage Example

예제 #1
0
 /**
  * tests unregisterAutoloader
  */
 public function testUnregisterAutoloader()
 {
     $this->assertTrue(PHPRtfLite::unregisterAutoloader());
 }