php7-mysql-data/Kapitel_2/Lektion_3/2_kommentare.php

21 lines
253 B
PHP
Raw Permalink Normal View History

2016-08-16 21:20:53 +02:00
<?php
// Ein einzeiliger Kommentar
// Ausgabe des Textes "Hallo Welt"
echo "Hallo Welt!";
// Die folgende Anweisung ist "auskommentiert".
// echo "Hallo Welt!";
/*
Mehrzeiliger
Kommentar
*/
/**
* Mehrzeiliger Kommentar
* im PHPDoc-Format
*/
?>