Posted by Benjamin on 06/15/07 20:30
On Jun 15, 9:57 am, pelon <pelonbiol...@gmail.com> wrote:
> Hey!
>
> I'm new to OO in PHP but somewhat familiar with this paridigm in
> JAVA....
>
> So I was wondering if it is possible to have within a PHP script
> something equivalent to a main method as it is possible in JAVA....
>
> For example:
>
> class myclass{
> //my class's code
>
> }
>
> //Here is where I want to create a main method... or a function that
> gets automatically called when the script is executed... that way this
> "main" method would create instances of "myclass" and use them...
You can't get away without something outside, but you can do as the
person above me pointed out: make a static function and call it first
thing.
>
> Cheers!
>
> Jose
[Back to original message]
|