Skip to content

Instantly share code, notes, and snippets.

@kemalkanok
Created October 13, 2015 17:06
Show Gist options
  • Save kemalkanok/49e65822dec861e55d2e to your computer and use it in GitHub Desktop.
Save kemalkanok/49e65822dec861e55d2e to your computer and use it in GitHub Desktop.
php örnek 1
function search($word,$key)
{
for($i=0;$i<strlen($word);$i++)
{
if($word[$i] == $key)
{
echo $i;
break;
}
}
}
search('kemal','a');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment