How To Find In String Finding Value In String With PHP
how to find in string finding value in string with php
how, to, find, in, string, finding, value, in, string, with, php
How To Find In String Finding Value In String With PHP
Post Description: how to find in string finding value in string with php
POST# 485
Posted On: Fri Feb 29, 2008 12:01 pm
web hosting
Topic: How To Find In String Finding Value In String With PHP

strpos()



you can use this function to find a word or letter or number in a string, it its found, it will retrun true.

more info at

http://php.net/manual/en/function.strstr.php

example, lets say i want to know if $string has any words wallpaperama in it

$string = 'wallpaperama has cool and amazing wallpapers';
$find = 'wallpaperama';

if(strpos($string, $find ){
echo 'yes, its found'
}else{
echo 'not found';
}


Sat Mar 08, 2008 10:28 am
1
hostman
Reply #1069

What do you think?

* name:  

* email:  

* Please enter comments:


Receive Replies on my Comments
(An email will be sent to you when someone replies to your comments)

Add image to comments
yes no             upload