1

我使用 Microsoft WebMatrix 作为 HTML 编辑器。不幸的是,默认情况下它不能识别 Zend Framework 中使用的 .phtml 文件。如何将项目中所有文件的默认文件扩展名更改为 .php?

4

2 回答 2

3

放一些类似的东西:

$view = new Zend_View();
$viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
$viewRenderer->setView($view)
             ->setViewSuffix('php');

在您的引导程序中。但是必须有一种方法可以告诉您的编辑器使用 phtml,但为了适应编辑器而不得不更改内容,这很可悲。

ps:未在编辑器附近进行测试,但它应该可以工作。

于 2012-06-22T03:46:45.290 回答
0

Netbeans for php 是一个不错的选择。完全支持 .phtml。自过去 2-3 年以来,我一直在将 netbeans 用于我的 ZF 应用程序。奇迹般有效!!

检查此页面https://netbeans.org/features/php/

于 2014-05-14T07:49:03.590 回答