Unsetting a variable vs setting to ''

theoley

New Member
Is it better form to do one of the following? If not, is one of them faster than the other?\[code\]unset($variable);\[/code\]or to do\[code\]$variable = '';\[/code\]
 
Back
Top