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

📄 operators.php3

📁 radius server在linux下的源码
💻 PHP3
字号:
<?php$op_eq = '=';$op_set = ':=';$op_add = '+=';$op_eq2 = '==';$op_ne = '!=';$op_gt = '>';$op_ge = '>=';$op_lt = '<';$op_le = '<=';$op_regeq = '=~';$op_regne = '!~';$op_exst = '=*';$op_nexst = '!*';// Check the operator if it is allowed for this type of// attribute (check or reply).// Arguments:// $op: The operator// $type: 1(check),2(reply)// Return value:0 for OK, -1 for errorfunction check_operator($op,$type){	switch($op){		case '=': 		case ':=':		case '+=':			return 0;		case '==':		case '!=':		case '>':		case '>=':		case '<':		case '<=':		case '=~':		case '!~':		case '=*':		case '!*':			return ($type == 1) ? 0 : -1;	}}?>

⌨️ 快捷键说明

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