1 2 3 4 5 6 7 8 | <html> <head> <title>$greetings</title> </head> <body> $greetings <body> </html> |
1 2 3 4 | $smart->template_dir = "smarty/templates/"; $smart->compile_dir = "smarty/templates_c/"; $smart->config_dir = "smarty/configs/"; $smart->cache_dir = "smarty/cache/"; |
1 2 | $smart->left_delimiter = "{/"; $smart->right_delimiter = "/}"; |
1 2 3 4 5 6 7 8 | $tpl->set_file('phplib', 'bigfile.htm'); $tpl->set_block('phplib', 'row', 'rows'); for ($j = 0; $j < 10; $j++){ $tpl->set_var('tag' ,"$j"); $tpl->parse('rows', 'row', true); } $tpl->parse('out', 'phplib'); $tpl->p('out'); |
1 2 | $smart->assign('row',$row); $smart->display('bigfile.htm'); |
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) | Powered by Discuz! 7.0.0 |