私は現在 Zend プロジェクトに取り組んでおり、company
多くのアクションを作成した という名前のコントローラーを作成しています。今、私はいくつかの utils 関数をコーディングしたいと思います。それらは、コントローラーの 1 つのアクションでのみ使用されますnameAction
。
これが私がしたことです:
class CompanyController extends Zend_Controller_Action {
public function nameAction( $name = null ) {
function get_inner_html( $node ) {
// Some code goes here
return $html;
}
function check_if_social_account($url) {
// Some code goes here
return $social_account;
}
// Here is the main code of my controller
}
}
このコードはうまく機能しますが、一部の関数を関数に変換するのは少し奇妙ですよね?
get_inner_html
これらのツール関数&check_if_social_account
をCompanyController
プライベート関数としてどこに配置すればよいですか? 別のファイルで?