⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function.posts.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php	function smarty_function_posts($params, &$smarty)	{    	// we can do this since we loaded this value from within        // the action    	$articles = $smarty->get_template_vars("articles");        // go through all the posts        foreach( $articles as $article ) {			$smarty->assign( "post", $article );            $smarty->display( "default/post.template" );        }	}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -