PHP 5 → 4 converter




(download as file)
<?php


 /**
  * this doc comment will stay together
  * with constant declaration
  */
define('MYCLASS_CONSTANT',  'constant value'); /* class constant */

/**
 * this doc comment will stay together
 * with MyClass declaration
 */
class MyClass
{

}

echo MYCLASS_CONSTANT. "<br>";

?>