开发者_开发百科
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form.
开发者_开发百科
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Which object I can use and which function I can call in a zend view script file.
If you want to know what variables you can access in a view file, you can get them as follows:
<?php
var_dump($this->getVars());
// or
var_dump(get_object_vars($this));
?>
精彩评论