rernanded
Erfahrenes Mitglied
PHP:
<?php
$src = "abc def ghi MONI xyz 123";
$start = strpos($src, "M");
$stop = strpos($src, "I");
$copy = substr($src, $start, $stop);
print "<i>$src</i> ----------> <b>$copy</b>";
?>
Moni
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
$src = "abc def ghi MONI xyz 123";
$start = strpos($src, "M");
$stop = strpos($src, "I");
$copy = substr($src, $start, $stop);
print "<i>$src</i> ----------> <b>$copy</b>";
?>
der letzte Parameter ist eine Länge und nicht eine Position. Also $stop-$startstring substr ( string $string , int $start [, int $length ] )
Nicht ganz, denn sonst wird nur "MON" zurückgegeben.Also $stop-$start
<?php
$src = "abc def ghi MONI xyz 123";
$start = strpos($src, "M");
// Hier noch ein +1
$stop = strpos($src, "I") + 1;
$copy = substr($src, $start, $stop-$start);
print "<i>$src</i> ----------> <b>$copy</b>";
?>