douzhan8303 2010-03-11 19:32
浏览 60
已采纳

正确使用双引号和单引号?

I'm talking about the performance increase here. From all I know you can echo variables in double quotes ("), like so:

<?php

echo "You are $yourAge years old";

?>

But single quotes will just return You are $yourAge years old. But what about performance differences? I've always gone by the rule that single quotes are faster because the PHP interpreter doesn't have to search through the string for variables. But I'm seeing more and more blog and forum posts on the web saying differently.

Does anyone actually have any information on this subject? Perhaps benchmark tests or something?

  • 写回答

4条回答 默认 最新

  • duanjue9889 2010-03-11 19:36
    关注

    According to the PHP Benchmark, the difference is extremely negligible:

    single (') quotes. 20 bytes Text and 3x a $ : $tmp[] = 'aa $ aaaa $ aaaa $ a'
    235 µs
    
    double (") quotes. 20 bytes Text and 3x a $ : $tmp[] = "aa $ aaaa $ aaaa $ a";
    226 µs
    

    Even if the differences were a multiple of what they are, they would not be relevant for real-life performance IMO. Database and file operations will take dozens, if not hundreds of times more time. That's not to say your question isn't totally valid, but it's not a big deal when optimizing your code.

    Readability is much, much more important.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 Python 如何安装 distutils模块
  • ¥15 关于#网络#的问题:网络是从楼上引一根网线下来,接了2台傻瓜交换机,也更换了ip还是不行
  • ¥15 资源泄露软件闪退怎么解决?
  • ¥15 CCF-CSP 2023 第三题 解压缩(50%)
  • ¥30 comfyui openpose报错
  • ¥20 Wpf Datarid单元格闪烁效果的实现
  • ¥15 图像分割、图像边缘提取
  • ¥15 sqlserver执行存储过程报错
  • ¥100 nuxt、uniapp、ruoyi-vue 相关发布问题
  • ¥15 浮窗和全屏应用同时存在,全屏应用输入法无法弹出