Hi,
Brandon Fosdick wrote:
From the point of view of an extension, what's the difference between a resource and an object? Is there any reason to favor one over the other?


sqlite seems to use resources for the procedural interface and objects otherwise. Whereas mysqli uses objects all around in user space, but then maps them to resources in the background. Why use objects only to map them to resources? Are resources somehow special?


mysqli does not use resources at all. Even in the procedural interface,
the "resources" are just objects. Thus, procedural and OO code can be
mixed, for those wanting to write spaghetti code or for legacy and
non-legacy code.

$c = mysqli_connect(....);
$r= $c->query();
...


Cheers,
Andrey

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

Reply via email to