Created
March 1, 2018 13:57
-
-
Save TakesTheBiscuit/9567fdef2a24862f3bfabbd500dce793 to your computer and use it in GitHub Desktop.
Strings PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$arr = ["7", | |
"13", | |
"4", | |
"5", | |
"13", | |
"18", | |
"28", | |
"7", | |
"9", | |
"1", | |
0]; | |
foreach ($arr as $index=>$val) { | |
var_dump($val); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment