PHPCfg\Op::getFile PHP 메소드

getFile() 공개 메소드

public getFile ( )
    public function getFile()
    {
        return $this->getAttribute("filename", "unknown");
    }

Usage Example

예제 #1
0
파일: Analyze.php 프로젝트: alprs/Tuli
 protected function emitError($msg, Op $op)
 {
     echo $msg;
     echo " ";
     echo $op->getFile() . ":" . $op->getLine();
     echo "\n";
 }