Hi , Was ist die Wirkung von "b" und "i" in $muster="/\bpraxisbuch\b/i"
Danke in Voraus
Danke in Voraus
PHP:
<?php
// Nur Praxisbücher
$muster="/\bpraxisbuch\b/i";
// Liste der gefundene Einträge
$prasix_buecher=preg_grep($muster,file("daten.txt"));
// Ausgabe
foreach ($prasix_buecher as $buch){
echo "$buch<br>";
};
?>