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

📄 config_txdb.php

📁 PPExam 是一个通用的在线考试系统
💻 PHP
字号:
<?php
#题型配置
$tixing_db = array(
	1 => 'tx_danxuan',	//base
	2 => 'tx_duoxuan',	//base
	3 => 'tx_jianda',	//主观题	base
	4 => 'tx_xinli',	//base (up)
	5 => 'tx_panduan',	//基于单选
	6 => 'tx_tiankong',	//基于简答
	7 => 'tx_zuhe',		//组合题型
);
#题型对应基础题型配置
$tixing_db_base = array(
	1 => 1,
	2 => 2,
	3 => 3,
	4 => 4,
	5 => 1,
	6 => 3,
	7 => 7,
);
//心理测试题配置
$tixing_db_xinliti = array(
	'4' => 4,
);

/**
 * 获得题型基础库ID
 *
 * @param number $t
 * @return number
 */

function GetTxBaseType($t) {
	if ($GLOBALS['tixing_db_base'][$t]) {
		return $GLOBALS['tixing_db_base'][$t];
	}else {	//默认单选题
		return 1;
	}
}

function GetTxName($t) {
	return GetMsg($GLOBALS['tixing_db'][$t]);
}
?>

⌨️ 快捷键说明

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