TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

REST Tutorial

1 点作者 amrithk大约 17 年前
Hi, I have started using Amazon S3 for a web application I have been developing. I recently discovered a PHP class (s3.class.php) that helps store, retrieve and delete files on S3.<p>However, the class does not work well in a few cases. Therefore I thought I'll learn REST so that I can create my own PHP class for interacting with S3 servers.<p>Does anyone know of a good introduction/tutorial for REST with php examples? I found a good tutorial but it was based on Ruby. Thanks

2 条评论

ubudesign大约 17 年前
may I make a diffrent suggestion. instead of S3 why not use something better. I don't know much about s3 but there is a much better standard of webdav. we among some other implementors have developed the server side. for client side there are many options too and if you want to do it in php this would be good class <a href="http://freshmeat.net/projects/class_webdav_client/" rel="nofollow">http://freshmeat.net/projects/class_webdav_client/</a>
noodle大约 17 年前
hm. restful is a way of doing things, not really something that you can read a tutorial on how to do step-by-step.<p>rails tutorials are tutorial form because you're implementing rest through a predefined framework.<p>the wikipedia article on it has good info: <a href="http://en.wikipedia.org/wiki/Restful" rel="nofollow">http://en.wikipedia.org/wiki/Restful</a>