Skip to content

Instantly share code, notes, and snippets.

@TakesTheBiscuit
Created March 1, 2018 13:57
Show Gist options
  • Save TakesTheBiscuit/9567fdef2a24862f3bfabbd500dce793 to your computer and use it in GitHub Desktop.
Save TakesTheBiscuit/9567fdef2a24862f3bfabbd500dce793 to your computer and use it in GitHub Desktop.
Strings PHP
<?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