PHP 5 → 4 converter




(download as file)
<?php

/**
* Define MyClass
*/
class MyClass
{
   var $public = 'Public';
   var $protected = 'Protected'; /* protected */
   var $private = 'Private'; /* private */

   // Declare a public method
   function MyPublic() { }

   // Declare a protected method
   function MyProtected() /* protected */ { }

   // Declare a private method
   function MyPrivate() /* private */ { }
}

?>