ZendFramework模板默認擴展名是.phtml,用DW打開後默認是使用純文本編輯,不能高亮顯示也不能顯示代碼提示等。只需簡單修改Dreamweaver的配置文件,即可讓DW打開phtml後是使用PHP引擎解析。步驟如下:
1. 找到如下文件
%Dreamweaver安裝目錄% configurationdocumenttypesmmdocumenttypes.xml
2. 將原始內容
<documenttype id="PHP_MySQL" servermodel="PHP MySQL" internaltype="Dynamic" winfileextension="php,php3,php4,php5" macfileextension="php,php3,php4,php5" file="Default.php" writebyteordermark="false">
3. 修改為(即在粗體部份加上.phtml)
<documenttype id="PHP_MySQL" servermodel="PHP MySQL" internaltype="Dynamic" winfileextension="php,php3,php4,php5,phtml" macfileextension="php,php3,php4,php5,phtml" file="Default.php" writebyteordermark="false">
保存後重新啟動DW即可。