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

PhpPerformance

Php Problem Overview


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";

Php Solutions


Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGeoffreyF67View Question on Stackoverflow