| YouTube |
|---|
| [Only registered and activated users can see links. Click Here To Register...] |
| YouTube |
|---|
| [Only registered and activated users can see links. Click Here To Register...] |
//Print out the character from the xth position in a string
<?php
$string1 = "I fucking love Who";
$string2 = "He is an awwhole";
$character = find($string1, 6)
echo "In String 1, the 6th character is $character";
echo "In String 2, the 2nd character is " . find($string2, 3);
function find($str, $pos)
{
$char = strpos($str, $pos); //takes the character from the xth position
return $char;
}
?>
|
|