<?php
$link = mysql_connect('localhost','root','');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('test1');
$start=$_POST['start'];
if(!$start) $start=0;
$end=$_POST['limit'];
if(!$end) $end=10;
//获取数据
$q = "SELECT rtype,rtime,rcsip,rcdip,rcsport,rcdport,rcproto,rcapp,rcomment FROM rnas_warn limit ".$start.','.$end;
mysql_query("SET NAMES 'gbk'");
$rs = mysql_query($q);
$return=array();
while($row=mysql_fetch_row($rs)) {
$return[] =$row;
}
/**************************************************************
*
* 使用特定function对数组中所有元素做处理
* @param string &$array 要处理的字符串
* @param string $function 要执行的函数
* @return boolean $apply_to_keys_also 是否也应用到key上
* @access public
*
*************************************************************/
function arrayRecursive(&$array, $function, $apply_to_keys_also = false)
{
foreach ($array as $key => $value) {
if (is_array($value)) {
arrayRecursive($array[$key], $function, $apply_to_keys_also);
} else {
$array[$key] = $function($value);
}
if ($apply_to_keys_also && is_string($key)) {
$new_key = $function($key);
if ($new_key != $key) {
$array[$new_key] = $array[$key];
unset($array[$key]);
}
}
}
}
/**************************************************************
*
* 将数组转换为JSON字符串(兼容中文)
* @param array $array 要转换的数组
* @return string 转换得到的json字符串
* @access public
*
*************************************************************/
function JSON($array) {
arrayRecursive($array, 'urlencode', true);
$json = json_encode($array);
echo urldecode($json);
}
//调用执行函数
JSON($return);
?>