Posted by fel on 06/15/07 18:49
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....
<?php
class welcometophp {
function main(){
System.out.println("not that different from java, is it?");
}
}
welcometophp::main();
?>
>
> 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...
>
> Cheers!
>
> Jose
[Back to original message]
|