On Wed, Nov 23, 2005 at 01:13:22AM -0500, Matt Monaco wrote:
> On a Fedora 4 machine running MySQL 4.1 I am having trouble declaring an 
> instance of a mysqli extension.
> 
> class Data extends mysqli {
>     ....
> 
> $link = new Data("localhost", "user", "password", "db");
> 
> This invokes the error "Trying to clone unclonable object of type Data." 
> However if I create the link with a reference ...
>     $link =& new Data(....);
> ...everything works fine.

This is because you have the ini option: 

  zend.ze1_compatibility_mode = On


Curt.
-- 
cat .signature: No such file or directory

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to