Last active
September 25, 2019 15:29
-
-
Save rbrigby/0eddff527c73f28e87e4626c2cba0098 to your computer and use it in GitHub Desktop.
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
// concatenate vars and strings | |
$ermsg = 'sampleNumber: ' . $sampleNumber . ', isSample: ' . $isSample . ', isSplit: ' | |
// kill execuation and dump var | |
die(var_dump($fooBarStix)); | |
// loop over multidimensional array | |
foreach($fooNumbers as $fooNumber) { | |
foreach($fooNumber as $k => $v) { | |
print $k | |
print $v | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment