我开始理解购买力平价中的排他性的重要性。 I m 利用PHP本身作为避免学习任何新语言的模板发动机。 我仍然不清楚一点,尽管我对此有想法。 我想知道专家们做了些什么。
如果我建立一个完整的网页模板,包括所有表格、表格和所有其他材料(包括头盔和脚.),或者如果我把所有表格、表格等放在自己的档案中,然后按需要添加到模板中。
在这里,一个小小的例子可以澄清......
我
a) 创建一页,列出所有表格、表格和其他内容,并将之作为最后产品使用
// Set all the information
$template->title = $username;
$template->user_info = get_user($user_id);
$template->articles = get_articles($user_id);
$template->ads = random_ad($user_info);
// Load the template with everything already in it
$template->load( user_page.tpl )
$template->display();
页: 1
b) 在其档案中创建每一表、表格、相关部件,然后使用这些元素制造最后产品
// set the title and load the header template
$header[ title ] = $username;
$template->load( header.tpl , $header);
// get the user info as an array and load into user profile template
$user_info = get_user($user_id);
$template->load( user_profile.tpl );
// load the new article form
$template->load( new_article_form.tpl );
// get the articles as an array of info and load into user articles template
$articles = get_articles($user_id);
$template->load( user_articles.tpl , $articles);
// get a random ad based on user info
$ads = random_ad($user_info);
$template->load( advertisements.tpl );
// load the footer template and display final page
$template->load( footer.php );
$template->display();
如果每个文件装上,在最后一页需要显示的部分。
由于你本人的技巧,我想B,但我想知道什么和为什么。