Differences between templates and plain .php 

http://www.symfony-project.org/forum/index.php?t=msg&goto=23158&#msg_23158

What are the differences between templates and plain .php files?

I.e., in a pure .php file, how can I use features that available to templates?

E.g.,

<?php use_helper('Debug') ?>
<?php log_message($message, $level) ?>

access the helpers from outside the view 

http://www.symfony-project.org/forum/index.php?t=msg&&th=7614&goto=31557

You can always access the helpers from outside the view by loading them first:

sfLoader::loadHelpers('Url');

documented on: 2007.07.17, snowkrash