Is there a performance benefit single quote vs double quote in php?

Viewed 14989

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";
0 Answers
Related