phpython Code
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
| a/trunk/python/python.lib.php | b/trunk/python/python.lib.php | ||
|---|---|---|---|
... |
... |
||
| 25 | echo $e->getMessage(), "\nLine: $codeline;", "\n"; |
25 | echo $e->getMessage(), "\nLine: $codeline;", "\n"; |
| 26 | echo '</pre>'; |
26 | echo '</pre>'; |
| 27 | } |
27 | } |
| 28 | } |
28 | } |
| 29 | 29 | ||
| 30 | 30 | function python_file($filename) { |
|
| 31 | $code = file_get_contents($filename); |
||
| 32 | python_eval($code); |
||
| 33 | } |