Пример #1
0
 * The IDE includes function parameter help. Uncomment the line
 * below, and continue the my_function call by typing a "(" and pausing
 * for just a moment.
 *
 * The IDE will tell you which parameters are available to that function.
 *
 */
//echo my_function
class myClass
{
    var $size = 50;
    var $height = 2;
    function myClass()
    {
        /**
         * There is also popup help for class methods and variables.
         * Uncomment the line below and continue the call to $this->size
         * by typing a ">" and pausing for just a moment. The IDE will
         * popup the methods and functions available in this class
         *
         */
        //$this-
    }
    function classFunc()
    {
        echo "Call to classFunc\n";
    }
}
$c = new myClass();
$c->classFunc();