zendコントローラーのindexActionからjavascript関数を呼び出したい。私のコントローラーはこんな感じです。
// mycontroller.php
public function indexAction(){
$role = 'admin';
$id = 23;
// here i want to call the javascript function
/// like myjsfun(role, id);
}
コントローラのviwefileは//index.phtmlです。
here is my javascript function
<script type='text/javascript'>
function myjsfun(role, id){
// code for this function
}