Files
wy/ZendFramework-1.11.3/bin/quickstart/application/controllers/IndexController.php

19 lines
225 B
PHP
Raw Normal View History

2026-01-07 11:40:41 +08:00
<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
// action body
}
}