开发者

where do i include the super_model in an ajax call?

from javascript i request for a php file. and this php file will call a model that extends a super_model.

i wonder where i should include this super_model. in the php file (which acts like a controller) or in the model?

i've got other models too, should i include the super_model they all extend in the controllers that are calling th开发者_如何学Goem, or in the models above the class function?


You should look up the php __autoload function, that way you don't even need to worry about when to include the file. Also, I'd use include_once(), as it'll make sure the file is only included once (as long as the file your including only has class or function definitions, this is the way to go).

As far as your specific question goes, if you're not going to use __autoload, I'd always include_once() the parent in the child class's definition.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜