Please can somebody answer this question..
Is it possible to view custom class function definitions?
And if so then how.
For example..
Using standard commenting syntax I can document the function but I can't view this information when writing code on the page.
Code: Select all
/**
* Description of MyClass goes here
* @author Fred Flintstone <fred@fred-flintstone.com>
*/
<?php
class MyClass{
/**
* @param string $someText Any text you want to echo!
*/
function echoSomeText ($someText ){
echo $someText ;
}
}
Code: Select all
$c = new MyClass();
$c->
- echoSomeText ($someText)
- Parameters
- string | $someText | Any text you want to echo!
So... it is possible to display custom class function definitions using other programs like NetBeans..
is it possible to display the custom class function definitions with WeBuilder 2011?
Is there another way to see them? In a window?
Regards,