PHP Resource Type:
In PHP, resource is a special type of variable. Main task of this variable is to hold a reference to an external resource like connection to database, a file etc.
In PHP 4's Zend Engine a reference counting system is introduced, if no resource is automatically detected then it is freed by garbage collector. That's why we do not need to free the memory manually.
PHP Resource Example:
<?php
$a
=mysql_connect("localhost","root","");echo
get_resource_type($a);?>
Output:
mysql link
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.