InterviewSolution
Saved Bookmarks
| 1. |
What is garbage collection in PHP? |
|
Answer» Garbage collection in PHP refers to allocating and deallocating of space due to repeated USE of a program. Many times, unnecessary space is CONSUMED when a RESOURCE is orphaned after being used. The garbage collector in PHP ENSURES that these kinds of unwanted space consumption are minimized. |
|