我正在尝试制作自己的模板系统,但我被困在这一点上。我不知道该怎么做。
在我的模板文件中,我目前有:
@list $users => $user:
<li>{{$user}}</li>
@endlist
我希望它作为一个 foreach 工作,在我的 $this->users 变量中显示用户。
我已经尝试过了,但我被困在这里。我希望有一个人可以帮助我 :-)
到目前为止我的代码(不起作用):
preg_match_all("/\@list(.*)\=\>(.*)\:/is", $e, $hmm);
foreach ( $hmm as $hm):
print_r($hm);exit;
$eval = 'foreach ('.$hm[1].' as '.$hm[2].'):';
eval($eval);
echo ":P";
endforeach;