html文件中可以执行php语句吗?
你的意思是说,如果后缀名是.html,里面包含php语句,问里面的php语句是不是可以直接执行对吧!
答案是:默认是不能的!
除非你在php.ini里面配置一下。
还记得有这一行吗,
AddType application/x-httpd-php .php
它就是告诉服务器,什么样后缀的文件,才调用php引擎来解释。
当然我们可以添加多行。如
AddType application/x-httpd-php .shtml
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php5
但是最好不要添加
AddType application/x-httpd-php .html
如果是这样的话,浏览器可以直接输出的也要经过php引擎。你不累,引擎还累呢!对吧!