📄 output.inc.php
字号:
function posid($field, $value)
{
global $priv_group, $POS;
if(!isset($POS)) $POS = cache_read('position.php');
$result = $this->db->select("SELECT `posid` FROM `".DB_PRE."content_position` WHERE `contentid`='$this->contentid'", 'posid');
$posids = array_keys($result);
$value = '';
foreach($posids as $posid)
{
$value .= $POS[$posid].' ';
}
return $value;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -