You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.1 KiB
70 lines
2.1 KiB
<?php
|
|
//---------------------------用户自定义标签函数文件
|
|
function user_ppt($id){
|
|
global $public_r;
|
|
$pd_record=explode(",",$public_r['add_ppt']);
|
|
return $pd_record[$id-1];
|
|
}
|
|
function user_tubiao($id){
|
|
global $public_r;
|
|
$pd_record=explode(",",$public_r['add_tubiao']);
|
|
return $pd_record[$id-1];
|
|
}
|
|
function user_beijing($id){
|
|
global $public_r;
|
|
$pd_record=explode(",",$public_r['add_beijing']);
|
|
return $pd_record[$id-1];
|
|
}
|
|
function user_yinxiao($id){
|
|
global $public_r;
|
|
$pd_record=explode(",",$public_r['add_yinxiao']);
|
|
return $pd_record[$id-1];
|
|
}
|
|
function user_peiyue($id){
|
|
global $public_r;
|
|
$pd_record=explode(",",$public_r['add_peiyue']);
|
|
return $pd_record[$id-1];
|
|
}
|
|
|
|
function user_changeTime($seconds){
|
|
if ($seconds >3600){
|
|
$hours =intval($seconds/3600);
|
|
$minutes = $seconds % 3600;
|
|
$time = $hours.":".gmstrftime('%M:%S',$minutes);
|
|
}else{
|
|
$time = gmstrftime('%M:%S',$seconds);
|
|
}
|
|
return $time;
|
|
}
|
|
/**
|
|
* 中文分词处理方法
|
|
*+---------------------------------
|
|
* @param stirng $string 要处理的字符串
|
|
* @param boolers $sort=false 根据value进行倒序
|
|
* @param Numbers $top=0 返回指定数量,默认返回全部
|
|
*+---------------------------------
|
|
* @return void
|
|
*/
|
|
function user_scws($text, $top = 5, $return_array = false, $sep = '|') {
|
|
include(ECMS_PATH.'pscws4/pscws4.class.php');//去下面给的网址把pscws4下载下来
|
|
$cws = new pscws4('utf-8');
|
|
$cws -> set_charset('utf-8');
|
|
$cws -> set_dict(ECMS_PATH.'pscws4/etc/dict.utf8.xdb');
|
|
$cws -> set_rule(ECMS_PATH.'pscws4/etc/rules.utf8.ini');
|
|
//$cws->set_multi(3);
|
|
$cws -> set_ignore(true);
|
|
//$cws->set_debug(true);
|
|
//$cws->set_duality(true);
|
|
$cws -> send_text($text);
|
|
$ret = $cws -> get_tops($top, 'r,v,p');
|
|
$result = null;
|
|
foreach ($ret as $value) {
|
|
if (false === $return_array) {
|
|
$result .= $sep . $value['word'];
|
|
} else {
|
|
$result[] = $value['word'];
|
|
}
|
|
}
|
|
return false === $return_array ? substr($result, 1) : $result;
|
|
}
|
|
?>
|