phpython Code
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
--- a +++ b/trunk/phpython.lib.php @@ -0,0 +1,9 @@ +<?php + + + +function phpython($filename) { + $code = file_get_contents($filename); + + var_dump($code); +}