php代码转换成jsp

一共两个php文件,帮忙转成jsp,或加下注释,php看不懂啊--------------------test.php<?phpinclude('input.php');... 一共两个php文件,帮忙转成jsp,或加下注释,php看不懂啊
--------------------
test.php
<?php
include('input.php');
$input = new input();
$input->al_num('name',1,3,8);
$input->date('birthday');
$input->on_error_json();
$post = get_object_vars($input);//这里直接得到一个可以在一定程度安全使用数组,方面CRUD的直接使用。
print_r($post);
/**
* 将数组转换为JSON字符串,并进行数组各元素的转义
* @param Array 欲转换的数组
* @return Null
*/
function json($arr){
foreach ($arr as $key=>$val){
$arr[$key] = addslashes($val);
}
return json_encode($arr);
}
?>
------------------
input.php
class input{
/**正在验证的值*/
protected $val;
/**正在验证的键*/
protected $key;
/**当前验证值是否必须不为空*/
protected $required;
/**当前验证值为空时的默认值*/
protected $default;
/**验证后的消息 */
protected $msg;
/**错误次数 */
protected $error_count = 0;
/**验证有错误时,以JSON格式返回错误消息*/
function on_error_json(){
if ($this->error_count) {
echo json($this->msg);
exit();
}
}
/**验证是否必须*/
protected function required()
{
if ($this->val=='') {
if ($this->required) {
$this->finish('请填写');
}else {
$this->val = $this->default;
$this->finish(0);
}
return false;
}else {
return true;
}
}
/**是否在长度范围 */
protected function lenth($min,$max){
$len = iconv_strlen($this->val,'UTF-8');
return ($len >= $min && $len <= $max);
}
/**验证之前的动作*/
protected function prepare($key,$required,$default,$trim=1)
{
$this->val = $_POST[$key];
if ($trim){
$this->val = trim($this->val);
}
$this->key = $key;
$this->default = $default;
$this->required = $required;
}
/**验证后,统一要判断方法*/
protected function finish($code){
if ($code){
$this->msg[$this->key] = $code;
$this->error_count += 1;
}else {
$this->msg[$this->key] = 0;
$key = $this->key;
$this->$key = $this->val;
}
}
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
邬樱00i
2008-12-17 · TA获得超过722个赞
知道小有建树答主
回答量:714
采纳率:0%
帮助的人:700万
展开全部
input.php 你一样也得转...好累..
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式