예제 #1
0
 def bytecode(self, code):
     return bytecode('/tmp/example.php', code)
예제 #2
0
 def run(self, code):
     bc = bytecode('/tmp/example.php', code)
     intrepreter = Interpreter()
     return intrepreter.run_return(bc)
예제 #3
0
파일: __init__.py 프로젝트: codewizz/pyhp
 def bytecode(self, code):
     filename = self._init(code)
     return bytecode(filename)