在php中使用单引号而不是双引号是否有任何性能优势?
换句话说,是否会有以下性能优势:
$foo = 'Test';
与
$foo = "Test";
php performance
performance ×1
php ×1