0
What is the difference between the functions unlink and unset?
Posted by The Blogger
on
12:24 PM
in
php
Answer:
unlink() is a function for file system handling. It will simply delete the file in context.
unset() is a function for variable management. It will make a variable undefined.
unlink() is a function for file system handling. It will simply delete the file in context.
unset() is a function for variable management. It will make a variable undefined.
Post a Comment