How good is PHP performance?

后端 未结 8 1045
你的背包
你的背包 2021-02-02 16:11

This is a follow up to a recent post I\'ve seen which suggests that PHP performance is poor:

\"PHP. IS. ALWAYS. THE. BOTTLENECK. My server farms, let me show you them! P

8条回答
  •  一生所求
    2021-02-02 16:23

    Using the correct algorithms and datastructures is much more relevant to the performance than using a certain programming language (as long as it's possible to express them in the chosen language).

    So PHP can be even faster than C++ if the PHP-programmer knows what he's doing.

提交回复
热议问题