2009 August

tag  2009  August PHP programming tutorials and examples with the 2009 August tag. This helps finding desired codes and snippets facilitating your site navigation. In every page you can find a special section with tags just like this - 2009 August. Tags inter-links tutorials with the similar content, so if you click on the tag you will find only related and relevant 2009 August content.

strcmp – String Compare

Here are some of string comparation php functions: strcmp($s1, $s2) – returns 0 if $s1 and $s2 are equal, a negativ value (-1) if $s1< $s2 and positive value (1) if $s1>$s2. The string comparation is case-sensitive, character by character, comparing character’s codes. Uppercase chars are...

strpos – Find the Position of a String

Finding the position of a string or substring can be made with this php functions: strpos($string, $seached_string [,$offset]) – returns position of the first occurrence of $searched_string inside $string or FALSE if $searched_string is not found. If $offset is specified, the seach will be made...