/ Published in: PHP
Simple PHP for loop to display / check each character within a string variable.
Expand |
Embed | Plain Text
$string = "Your String"; for($i=0;$i<strlen($string);$i++){ }
You need to login to post a comment.
Simple PHP for loop to display / check each character within a string variable.
$string = "Your String"; for($i=0;$i<strlen($string);$i++){ }
You need to login to post a comment.