Re: [PHP-DEV] define and objects!

2007-04-29 Thread David Coallier
On 4/29/07, MaaSTaaR <[EMAIL PROTECTED]> wrote: Hello ... Firstly sorry for my bad English, my friend request from me to send this suggestion for PHP developer. The suggestion is support use constant as object, for example : class HelloWorld { function start() { echo 'Hello Wo

[PHP-DEV] define and objects!

2007-04-29 Thread MaaSTaaR
Hello ... Firstly sorry for my bad English, my friend request from me to send this suggestion for PHP developer. The suggestion is support use constant as object, for example : class HelloWorld { function start() { echo 'Hello World'; } } define('OBJ',new HelloWorld); OBJ-