?? function.in_array.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 + -