Hier werden die Unterschiede zwischen zwei Versionen gezeigt.
Both sides previous revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
php [2022/07/28 10:35] webproducer Frameworks um PHPUnit erweitert |
php [2024/11/04 10:09] (aktuell) webproducer SWITCH-CASE ergänzt |
||
---|---|---|---|
Zeile 8: | Zeile 8: | ||
* [[php:IDE|Die ideale (leider kostenpflichtige) PHP Entwicklungsumgebung (IDE)]] | * [[php:IDE|Die ideale (leider kostenpflichtige) PHP Entwicklungsumgebung (IDE)]] | ||
+ | * [[php:composer|Composer (anwendungsorientierter Paketmanager für PHP)]] | ||
* [[php:anonymous_functions|Anonyme Funktionen in PHP]] | * [[php:anonymous_functions|Anonyme Funktionen in PHP]] | ||
* [[PHP:Array|Array (Zuordnung von Werten zu Schlüsseln)]] | * [[PHP:Array|Array (Zuordnung von Werten zu Schlüsseln)]] | ||
Zeile 23: | Zeile 24: | ||
* [[php:loops|Schleifen in PHP]] | * [[php:loops|Schleifen in PHP]] | ||
* [[php:if|IF-ELSE-Kurzschreibweise]] | * [[php:if|IF-ELSE-Kurzschreibweise]] | ||
+ | * [[php:switch|SWITCH-CASE-Anweisung]] | ||
* [[php:empty|empty (PHP-Funktion)]] | * [[php:empty|empty (PHP-Funktion)]] | ||
* [[php:pow|Potenzrechnung mit PHP]] | * [[php:pow|Potenzrechnung mit PHP]] | ||
Zeile 74: | Zeile 76: | ||
* [[redmine:api|Redmine ReST-API]] | * [[redmine:api|Redmine ReST-API]] | ||
* [[php:tado|Tado° ReST-API - Heizungssteuerung mit PHP]] | * [[php:tado|Tado° ReST-API - Heizungssteuerung mit PHP]] | ||
+ | * [[php:meteomatics|Wetterbericht mit PHP abfragen]] | ||
* [[php:soap|SOAP-API (Programmierschnittstelle)]] | * [[php:soap|SOAP-API (Programmierschnittstelle)]] | ||
- | * [[php:ftp|FTP (File Transfer Protocol]] | + | |
- | * [[php:sftp|SFTP (SSH File Transfer Protocol) mit Passwort-Authentifizierung]] | + | ==== Dateiaustausch mit FTP (File Transfer Protocol) ==== |
- | * [[php:sftp_key|SFTP (SSH File Transfer Protocol) mit SSH-Key-Authentifizierung]] | + | |
- | * [[php:sftp_private_key|SFTP mit OPENSSH PRIVATE KEY-Authentifizierung]] | + | Das File Transfer Protocol dient zum plattformunabhängigen Austausch von Dateien zwischen zwei Systemen. FTP ist jedoch unsicher, da es über keine Verschlüsselung verfügt. Daher wurde der Dateiaustausch um die sichereren Varianten FTPS und SFTP erweitert. |
+ | |||
+ | ^ Protokoll ^ Beschreibung ^ Authentifizerung ^ Standard-Port ^ Beispiele ^ | ||
+ | | FTP | File Transfer Protocol | Benutzername und Passwort | Port 21 | [[php:ftp|PHP-Beispiel]] | | ||
+ | | FTPS | File Transfer Protocol over SSL | Benutzername und Passwort | Port 21 | [[php:ftps|PHP-Beispiel]] | | ||
+ | | SFTP | SSH File Transfer Protocol | Benutzername und Passwort | Port 22 | [[php:sftp|PHP-Beispiel]] | | ||
+ | | SFTP | SSH File Transfer Protocol | Benutzername und Private Key | Port 22 | [[php:sftp_private_key|PHP-Beispiel]] | | ||