At 14:19 25/03/2002 +0200, Jury Cherepanov wrote:
>Hello Andi,
>
>Saturday, March 23, 2002, 1:53:47 PM, you wrote:
>
>AG> At 11:48 23/03/2002 +0000, Jury Cherepanov wrote:
> >>Developing Next Generation Of PHP -> PHPO (PHP Objectiv)
> >>Fully Object Orintied Systaxis in PHP supporting old instruction.
>
>AG> What is this exactly?
>
>AG> Andi
>
>
>New syntactic operators.
>
>php:
>     mysql_connect() .....
>     mysql_query($QUERY);....
>
>phpo:
>      mysql = new CMySQL($host, $port, $user, $pass);
>
>      mysql.host = "localhost";
>      mysql.port = "3306";
>      mysql.connect().....
>      mysql.query($QUERY) .....
>
>      and so on.

What is wrong with $mysql->host = "localhost"?  Why are you looking to 
change the language from what it is now?
All you need to do is implemented the CMySQL class if you want to have a 
more object oriented interface to extensions. I suggest you discuss on 
php-dev@ what you mean to do so that we can see how you can help and in 
what direction.

Andi


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to