Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
[COLOR=#000000] [COLOR=#0000BB]<?php
$meinString [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]'abc'[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]$findMich [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]'a'[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]$pos [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]strpos[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$meinString[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]$findMich[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#FF8000]// Beachten Sie die Verwendung von ===. Ein einfacher Vergleich (==) liefert
// nicht das erwartete Ergebnis, da die Position von 'a' die nullte Stelle
// (also das erste Zeichen) ist
[/COLOR][COLOR=#007700]if ([/COLOR][COLOR=#0000BB]$pos [/COLOR][COLOR=#007700]=== [/COLOR][COLOR=#0000BB]false[/COLOR][COLOR=#007700]) {
echo [/COLOR][COLOR=#DD0000]"Der String '[/COLOR][COLOR=#0000BB]$findMich[/COLOR][COLOR=#DD0000]' wurde nicht im String '[/COLOR][COLOR=#0000BB]$meinString[/COLOR][COLOR=#DD0000]' gefunden"[/COLOR][COLOR=#007700];
} else {
echo [/COLOR][COLOR=#DD0000]"Der String '[/COLOR][COLOR=#0000BB]$findMich[/COLOR][COLOR=#DD0000]' wurde im String '[/COLOR][COLOR=#0000BB]$meinString[/COLOR][COLOR=#DD0000]' gefunden"[/COLOR][COLOR=#007700];
echo [/COLOR][COLOR=#DD0000]" und befindet sich an Position [/COLOR][COLOR=#0000BB]$pos[/COLOR][COLOR=#DD0000]"[/COLOR][COLOR=#007700];
}
[/COLOR][COLOR=#0000BB]?>[/COLOR] [/COLOR]