[ create a new paste ] login | about

Link: http://codepad.org/3CFvTWBu    [ raw code | fork ]

PHP, pasted on Jul 5:
1
2
3
4
5
6
7
<?php
$mystring = 'abc';
$findme   = 'i';
$pos = strpos($mystring, $findme);

echo $pos
?>


Output:
No errors or program output.


Create a new paste based on this one


Comments: