摘要:
代码如下 //清除html function clearhtml($str){ $str = trim($str); $str = strip_tags($str,""); $str=strip_tags($str,"");//利用php自带的函数清除html格式 $str=preg_replace("/\t/","",$str);//使用正则表达式匹配需要替换的内容,如空格和换行,并将替换为空 $str=preg_replace("/\r\n/","",$str); $st 阅读全文
摘要:
入口setView('api'); } function indexAction() { $json = $_REQUEST; //print_r(json_decode($json['json'],true));exit; if (array_key_exists('json', $json)) { $json_info = json_decode($json['json'], true); //$this->debuglog($json['json']); // debug } ... 阅读全文