Hi
I'm just wondering if some tool which will make PHP code more readable exist?
Tool will be used to make scripts with other people wrote more readble.
Here is exempel:
if($action=="selectlang"){session_register("mylang");$mylang=$language;}
So I would like to format code like this to something like this:
if($action=="selectlang"){
session_register("mylang");
$mylang=$language;
}
I tryed different applications like Macromedia Dreamweaver, Nusphere PHPEd but never found tool which will format code to more readable format.
Thanks