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

📄 function.in_array.php

📁 、支持无限级的分类与子分类
💻 PHP
字号:
<?php 
/** 
 * template_lite in_array plugin 
 * 
 * Type:     function 
 * Name:     in_array 
 * Purpose:  Checks to see if there is an item in the array that matches and returns the returnvalue if true. 
 */ 
function tpl_function_in_array($params, &$tpl)
{
	extract($params);

	if (is_array($array))
	{
		if (in_array($match, $array))
		{
			return $returnvalue;
		}
	}
}
?>

⌨️ 快捷键说明

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