Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

Arzillo vendita prodotti per decoupage hobby e belle arti
Sito dedicato alla vendita dei prodotti per Decoupage, Belle arti, ed Hobby in genere. Prezzi tra i più bassi in rete, prodotti di ottima qualità, cortesia, affidabilità, e consegne rapidissime. Trasporto gratuito
Easy FullTraffic | acquistare traffico web | Aumentare il traffico
Pubblicizza il tuo sito web con noi. Incrementa i guadagni del tuo sito web - Visite e Clienti Subito. Siamo il leader nel veicolare traffico web. Con un qualsiasi programma di statistiche per il vostro sito potrete verificare la provenienza.

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



Resource

A resource is a special variable, holding a reference to an external resource. Resources are created and used by special functions. See the appendix for a listing of all these functions and the corresponding resource types.

Nota: The resource type was introduced in PHP 4

Converting to resource

As resource types hold special handlers to opened files, database connections, image canvas areas and the like, you cannot convert any value to a resource.

Freeing resources

Due to the reference-counting system introduced with PHP 4's Zend Engine, it is automatically detected when a resource is no longer referred to (just like Java). When this is the case, all resources that were in use for this resource are made free by the garbage collector. For this reason, it is rarely ever necessary to free the memory manually by using some free_result function.

Nota: Persistent database links are special, they are not destroyed by the garbage collector. See also the section about persistent connections.