首页 >

php ajax返回 json数据实例

php教程|php手册php ajax返回 json数据实例
php,json数据,ajax返回
php教程-php手册
本教学是一款php ajax返回 json数据实例,就是利用ajax实时的接受json.php文件发送的数据请求,并且进行了处理,代码如下:
-56源码是,ubuntu挂载网盘,爬虫饲养箱 玻璃,php、node,常州手机seolzw
 	 	 	 	php ajax返回 on数据实例 	 	var xmlhttp; 	function createxmlhttprequest() 	{ 	//var xmlhttp=null; 	try 	  { 	  // firefox, opera 8.0+, safari 	  xmlhttp=new xmlhttprequest(); 	  } 	catch (e) 	  { 	  // internet explorer 	  try 	    { 	    xmlhttp=new activexobject("msxml2.xmlhttp"); 	    } 	  catch (e) 	    { 	    xmlhttp=new activexobject("microsoft.xmlhttp"); 	    } 	  } 	return xmlhttp; 	} 	function startrequest(id) 	{ 	    createxmlhttprequest(); 	    try 	    {    	     url="json.php?cid="+id; 	        xmlhttp.onreadystatechange = handlestatechange; 	        xmlhttp.open("post", url, true); 	        xmlhttp.send(null); 	    } 	    catch(exception) 	    { 	        alert("xmlhttp fail"); 	    } 	} 	function handlestatechange() 	{ 	    if(xmlhttp.readystate == 4) 	    { 	        if (xmlhttp.status == 200 || xmlhttp.status == 0) 	        { 	            var result = xmlhttp.responsetext; 	            var json = eval("(" + result + ")"); 	            alert('name:'+json.name); 	            alert('age:'+json.age); 	   alert('id:'+json.id); 	        } 	    } 	} 	 	 	 	 	

json.php 文件,代码如下:

软文发布网站源码,完全卸载vscode,pptp ubuntu,tomcat并发处理,获取sqlite表的总数,dz共享插件分享,web前端可视化交互框架,爬虫常用解析方式和包,php 55,武汉seo推广竞价,高端大气网站模板,手机使用调查表网页代码,手机物流模板lzw
 1000) { 	        die('possible deep recursion attack'); 	    } 	    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]); 	            } 	        } 	    } 	    $recursive_counter--; 	} 	 	/************************************************************** 	 * 	 * 将数组转换为json字符串(兼容中文) 	 * @param array $array  要转换的数组 	 * @return string  转换得到的json字符串 	 * @access public 	 * 	 *************************************************************/ 	function json($array) { 	 arrayrecursive($array, 'urlencode', true); 	 $json = json_encode($array); 	 return urldecode($json); 	}//开源代码phprm.com 	 	$array = array 	       ( 	          'name'=>'希亚', 	          'age'=>20, 	    'id'=>$_post['cid'] 	       ); 	 	echo json($array); 	/********* 	 {"name":"希亚","age":"20"} 	

文章地址:

网页点餐系统源码,vscode 快速实现,ubuntu如,tomcat报错信息,csv转sqlite3,采矿插件,前端框架从零开始学习交流,海边的小爬虫有哪些,php qq接口,seo公司推广产品,网站帐号系统源码,php 开发网页模板下载地址,交友送礼物模板lzw
转载随意^^请带上本文地址!


php ajax返回 json数据实例
  • js 与 php 通过json数据进行通讯示例【javascript】
  • js 与 php 通过json数据进行通讯示例【javascript】 | js 与 php 通过json数据进行通讯示例【javascript】 ...

    php ajax返回 json数据实例
  • ext前台接收action传过来的json数据示例_extjs
  • ext前台接收action传过来的json数据示例_extjs | ext前台接收action传过来的json数据示例_extjs ...

    php ajax返回 json数据实例
  • php 通过curl post发送json数据实例
  • php 通过curl post发送json数据实例 | php 通过curl post发送json数据实例 ...