Are there any performance benefits to using single quotes instead of double quotes in php?
In other words, would there be a performance benefit of:
$foo = 'Test';
versus
$foo = "Test";
Are there any performance benefits to using single quotes instead of double quotes in php?
In other words, would there be a performance benefit of:
$foo = 'Test';
versus
$foo = "Test";