phpython Code
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
--- a +++ b/trunk/python/common.php @@ -0,0 +1,8 @@ +<?php + +if (!function_exists('re')) { + function re($regex,$input,&$output) { + return preg_match($regex,$input,$output); + } +} +