Forum

> > Off Topic > instr Funktion in PHP?
Forums overviewOff Topic overviewLog in to reply

German instr Funktion in PHP?

2 replies
To the start Previous 1 Next To the start

old instr Funktion in PHP?

k.o.g.
User Off Offline

Quote
Hallo zusammen, ich dachte wenn im moment soviele PHP Fragen gestellt werden, stelle ich auch mal eine

Gibt es eine instr ähnliche Funktion wie in BlitzBasic?
Ich hatte immer was kleines geschrieben das den ganzen angegebenen String durchsucht nach einem bestimmten Wort:
1
2
3
4
5
6
7
8
9
10
11
<?
			$host="abcdefghi[b]bot[/b]jklmnop";
			$len=strlen($host);
			for($i=0;$i<=$len;$i++)  {
				$word=$host{$i}.$host{$i+1}.$host{$i+2};
				$word=strtolower($word);
				if($word==="bot")  {
					//dann was machen
				}
			}
?>
Ich finde dies einbisschen umständlich daher meine Frage.

old Re: instr Funktion in PHP?

DC
Admin Off Offline

Quote
Mit substr_count("text_der_durchsucht_wird","teil") kannst du ausgeben lassen, wie oft "teil" in "text_der_durchsucht_wird" vorkommt.
To the start Previous 1 Next To the start
Log in to replyOff Topic overviewForums overview