Why aren't PHP files used for (custom) CSS and JS?

后端 未结 8 1116
旧时难觅i
旧时难觅i 2020-12-15 22:27

Why don\'t people make .php files for their CSS and JavaScript files?

8条回答
  •  时光说笑
    2020-12-15 23:12

    Sometimes you might have to dynamically create javascript or styles.

    the issue is webservers are optimized to serve static content. Dynamically generating content with php can be a huge perforamce hit because it needs to be generated on each request.

提交回复
热议问题