Regular Expressions 101

Community Patterns

1

gamgamtest_matei_überwiegend_version2

Created·2025-11-21 07:37
Flavor·PCRE2 (PHP)
Tier Verwalter setName($name); $this->setAlter($alter); $this->setGewicht($gewicht); $this->setGeburtsdatum($geburtsdatum); $this->setArt($art); $this->id = uniqid(); } // Getter und Setter für name public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } // Getter und Setter für alter public function setAlter($alter) { $this->alter = $alter; } public function getAlter() { return $this->alter; } // Getter und Setter für gewicht public function setGewicht($gewicht) { $this->gewicht = $gewicht; } public function getGewicht() { return $this->gewicht; } // Getter und Setter für geburtsdatum public function setGeburtsdatum($geburtsdatum) { $this->geburtsdatum = $geburtsdatum; } public function getGeburtsdatum() { return $this->geburtsdatum; } // Getter und Setter für art public function setArt($art) { $this->art = $art; } public function getArt() { return $this->art; } public function getId() { return $this->id; } } if (isset($_POST'speichern'])) { $neuesTier = new Tier( $_POST['name'], $_POST['alter'], $_POST['gewicht'], $_POST['geburtsdatum'], $_POST['art'] ); if (!isset($_SESSION['tiere'])) { $_SESSION['tiere'] = array(); } $_SESSION['tiere'] = $neuesTier; } if (isset($_POST['loeschen'])) { if (isset($_SESSION['tiere'])) { unset($_SESSION['tiere']); $_SESSION['tiere'] = array(); } } ?> Neues Tier hinzufügen Name: Alter: Gewicht (kg): Geburtsdatum: Art: Speichern Alle löschen Gespeicherte Tiere: 0) { foreach ($_SESSION['tiere'] as $tier) { echo "Tier: " . htmlspecialchars($tier->getName()) . ""; } } else { echo "Keine Tiere gespeichert."; } ?>
Submitted by anonymous

Community Library Entry

1

Regular Expression
Created·2025-11-21 07:34
Flavor·PCRE2 (PHP)

Description

<?php session_start(); ?> <!DOCTYPE html> <html> <head> <title>Produktverwaltung</title> </head> <body> <?php class Produkt { private $name; private $preis; private $id; public function __construct($name = '', $preis = 0) { $this->setName($name); $this->setPreis($preis); $this->id = uniqid(); } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setPreis($preis) { $this->preis = $preis; } public function getPreis() { return $this->preis; } public function getId() { return $this->id; } } if (isset($_POST['speichern'])) { $neuesProdukt = new Produkt($_POST['name'], $_POST['preis']); if (!isset($_SESSION['produkte'])) { $_SESSION['produkte'] = array(); } $_SESSION['produkte'][$neuesProdukt->getId()] = $neuesProdukt; } if (isset($_POST['loeschen'])) { unset($_SESSION['produkte']); $_SESSION['produkte'] = array(); } ?> <form method="POST"> <label>Produktname:</label> <input type="text" name="name" value="Beispielprodukt" required><br><br>
<label>Preis:</label>
<input type="number" name="preis" value="10.99" step="0.01" min="0" required><br><br>

<button type="submit" name="speichern" value="speichern">Speichern</button>
<button type="submit" name="loeschen" value="loeschen">Alle löschen</button>
</form> <h3>Gespeicherte Produkte:</h3> <?php if (isset($_SESSION['produkte'])) { foreach ($_SESSION['produkte'] as $produkt) { echo "<p>Produkt: " . $produkt->getName() . "</p>"; } } ?> </body> </html>
Submitted by anonymous