Moodle、PHP 和使用外部 API

发布于 2024-11-11 15:45:04 字数 222 浏览 0 评论 0原文

我是 Moodle 和 PHP 的新手,所以我可能会要求不可能的或只是不切实际的。

例如,我想知道如何允许客户端应用程序(可能用 C++、Java、AS3/Flash 编写)调用 Moodle 的成绩册模块。

Moodle 是作为服务器运行还是依赖 Apache 或其他网络服务器?

任何有关此类事情的示例的指针,以及有关学习 PHP、Moodle 等书籍的建议,我们将不胜感激。

I am new to Moodle and PHP, so I may be asking for the impossible or just the impractical.

I am wondering how I might go about allowing client applications (written, perhaps, in C++, Java, AS3/Flash) to make calls to Moodle's Gradebook module, for example.

Does Moodle run as a server or does it rely on Apache or some other webserver?

Any pointers to examples of this kind of thing, as well as advice on books for learning PHP, Moodle, etc. would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡写薰衣草的香 2024-11-18 15:45:04

Moodle 只是一个用 PHP 编写的 Web 应用程序。它依赖 Apache(或任何其他 Web 服务器)来提供 PHP 页面。

你可以使用类似 Thrift 的东西来实现“C++、Java、Python、PHP、Ruby、Erlang、 Perl、Haskell、C#、Cocoa、JavaScript、Node.js、Smalltalk 和 OCaml”。

关于PHP,先从官方文档开始:

http://www.php.net/manual/en/< /a>

关于 Moodle,这里是可用书籍的列表:

http://moodle.org/mod/data/view.php?id=7246

查看“Moodle 1.9 扩展开发”来编写您的自定义扩展(块、模块、分配) ):

http://moodle.org/mod/data/view.php?d=55&rid=3796

希望这会有所帮助。

Moodle is a mere web application written in PHP. It relies on Apache (or any other web server) to serve PHP pages.

You might use something like Thrift to implement the communication between "C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, and OCaml".

Regarding PHP, start with the official documentation:

http://www.php.net/manual/en/

Regarding Moodle, here is a list of available books:

http://moodle.org/mod/data/view.php?id=7246

Have a look to "Moodle 1.9 Extension Development" to write your custom extensions (blocks, modules, assignments):

http://moodle.org/mod/data/view.php?d=55&rid=3796

Hope this helps a bit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文