如何在 symfony 1.4 中为 index.php 获取 url?

How to get the url for index.php in symfony 1.4?

如何在 symfony 1.4 中获得 index.php 的 url?

我知道有一个函数 url_for() 但它只 returns 给定插件的 url。我想获取路由到 index.php

的 url

这不能是常量,因为域和路径可能会改变。

echo public_path('index.php');

此代码使用 UrlHelper 中的 public path 函数。它只能在模板内工作。