What is the difference between the functions unlink and unset?
Hi all,
unlink() function : It is a function for file system handling. It will simply delete the file in context.
unset() function : It is a function for variable management. It will make a variable undefined.
Thanks