Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以在 PHP 中创建REST API以在服务器中创建文件夹结构吗?我需要的是接收两个参数ID和DataID,其中ID将是父文件夹,DataID应该是子文件夹,我是 REST 和 API 的新手,感谢您的帮助。
我建议您为此使用一个框架,因为它使您的事情变得更容易。它还为您提供了基本的基础架构(如果您愿意,甚至可以提供某种文件夹结构)和其他最佳实践。
看看Slim 框架,它是一个 php 微框架,可帮助您快速编写简单的 Web 应用程序和 API。它为您提供了开发 RESTful API 所需的所有基本功能(即路由、模板)。
不久前,我还使用 Slim 框架制作了一个小示例应用程序。这可能会帮助您入门。