我的帖子有正文,在这些文本中我输入了 [gallery=2] 之类的短代码,现在我可以在我的文本中找到 2 个参数(gallery 和 2)我想在我看来动态调用一个函数(gallery),它是像这样调用一个元素(图库 id = 2):
应用程序/视图/帖子/index.ctp
findshortcode($posts[Post][Body]); // this function find short code and call his name like gallery(2)
//my problem is :
function gallery($id = null){
$this->element('gallery', array('galleryid' => $id), array('plugin' => 'gallerys'));
}