Created
August 31, 2018 10:46
-
-
Save ha1t/021e1ac109c58153e2d08f5789c42931 to your computer and use it in GitHub Desktop.
This file contains 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 | |
$rows1 = [['id' => 1], ['id' => 2]]; | |
$rows2 = [[]]; | |
$rows3 = []; | |
function pattern1($rows) | |
{ | |
foreach ($rows as $row) { | |
if (!isset($row['id'])) { | |
echo "0件ですわあ"; | |
} else { | |
echo $row['id'] . ':'; | |
} | |
} | |
echo PHP_EOL; | |
} | |
pattern1($rows1); | |
pattern1($rows2); | |
pattern1($rows3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$row1と$row2はforeachを通るけど、$row3はforeach自体通らない