Hinweis: Sie sind auf den Seiten der Moodle 1.9 Dokumentation. Die Dokumentation der aktuellsten Moodle-Version finden Sie hier: PHP FAQ.

PHP FAQ: Unterschied zwischen den Versionen

Aus MoodleDocs
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „{{Zum Übersetzen}} Siehe en:PHP FAQ Category:FAQ en:PHP FAQ“)
 
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
{{Zum Übersetzen}}
{{Zum Übersetzen}}
Siehe [[:en:PHP FAQ]]
Siehe [[:en:PHP FAQ]]
== What is PHP? ==
PHP  is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.
== Where can I learn more about PHP? ==
=== Online resources: ===
* The [http://www.php.net official PHP Homepage] with documentation, tutorials, FAQ, etc.
* The [http://www.w3schools.com/PHP/DEfaULT.asP W3Schools PHP Tutorial] is a great way to learn about PHP by example.
=== Books: ===
* [http://books.google.de/books?id=iUfIqyAbIU4C&output=html PHP Cookbook] by David Sklar and Adam Trachtenberg.
* [http://www.manning.com/reiersol/ PHP in Action] by Dagfinn Reiersøl with Marcus Baker and Chris Shiflett. ([http://books.slashdot.org/article.pl?sid=08/01/23/1446243 Book review on Slashdot].)
== How is PHP used by Moodle? ==
* [[Installing Moodle/Creating custom php.ini files]]
* [[PHP settings by Moodle version]]
* [[PHP error logs]]
* [http://moodle.org/mod/forum/search.php?notwords=Re:&id=5&subject=php.ini php.ini related discussions] in the Moodle forums
== Which version of PHP is required by Moodle? ==
* See [[Installing_Moodle#Requirements]].
* You can tell which version you are using by looking at [[PHP info]].
==How do I install PHP?==
Usually PHP is installed alongside [[Apache]] and [[MySQL]] in a combination known as AMP, see [[Installing AMP]] for details. It is possible to build PHP from source - you might have to if you need a very new version for developing Moodle - however, it is quite challenging. PHP itself has many dependencies that you will need to obtain and build, some of which are also tricky to build from source (e.g. GD).
== Siehe auch ==
* [[Installing MSSQL for PHP]]
* [[Installing Oracle for PHP]]
* [[Installing Postgres for PHP]]


[[Category:FAQ]]
[[Category:FAQ]]
[[Category:Administrator]]
[[Category:Entwickler]]
[[en:PHP FAQ]]
[[en:PHP FAQ]]

Version vom 17. September 2009, 07:25 Uhr

Baustelle.png Diese Seite ist noch nicht vollständig übersetzt.

Siehe en:PHP FAQ

What is PHP?

PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.

Where can I learn more about PHP?

Online resources:

Books:

How is PHP used by Moodle?

Which version of PHP is required by Moodle?

How do I install PHP?

Usually PHP is installed alongside Apache and MySQL in a combination known as AMP, see Installing AMP for details. It is possible to build PHP from source - you might have to if you need a very new version for developing Moodle - however, it is quite challenging. PHP itself has many dependencies that you will need to obtain and build, some of which are also tricky to build from source (e.g. GD).

Siehe auch