ホームページ >バックエンド開発 >PHPチュートリアル >ZEND FRAMEWORK で URL パラメータを渡す方法
ZEND FRAMEWORK はどのようにして URL パラメーターを渡しますか?
ZEND FRAMEWORK はどのようにして URL パラメーターを渡しますか?
CONTROL があります
LIST ACTION にアクセスするにはどうすればよいですか?そしてIDを渡します。
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php class OtherController extends Zend_Controller_Action { public function init() { } public function indexAction() { $this->view->content = "A"; } public function listAction() { $this->view->content = "B list"; } }