Apache 2 + PHP + REST支持例子_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > Apache 2 + PHP + REST支持例子

Apache 2 + PHP + REST支持例子

 2010/12/8 10:18:14  vb2005xu  http://vb2005xu.javaeye.com  我要评论(0)
  • 摘要:之前一直想看看rest风格的URI的实现,但是对PUTDELETE方法实在是没有使用过,今天测试了下记录如下:$('#sidebarullia:not(href)').click(function(){$.ajax({type:'DELETE',url:'{echo(url('App_Accounts','rest'))}',data:{username:'iamsese',password:'sfsfdsfdse'}});});后台代码:functionactionRest()
  • 标签:PHP 例子 Apache

之前一直想看看rest风格的URI的实现,但是对 PUT DELETE方法实在是没有使用过,今天测试了下 记录如下:

?

				$('#sidebar ul li a:not(href)').click(function(){
					$.ajax({
						type: 'DELETE' ,
						url: '{echo(url('App_Accounts','rest'))}' ,
						data: {username: 'iamsese' ,password: 'sfsfdsfdse'}
					});
				});

?后台代码:

?

	function actionRest(){
//		$data = '' ;
//		$putdata = fopen("php://input","r");
//		while (!feof($putdata))
//        {
//            $data .= fread($putdata,1024);
//        }
//        fclose($putdata);

		$data = file_get_contents("php://input");
		dump($data,$_SERVER['REQUEST_METHOD']);
	}

?

不使用

"php://input"

? 就取不到 参数 ,这里记录下 哈哈 基本rest也就能实现了

发表评论
用户名: 匿名