Skip to content

Instantly share code, notes, and snippets.

@odinuv
Created September 27, 2018 15:08
Show Gist options
  • Save odinuv/b6a873fbd59116cddc218b3549a81e2b to your computer and use it in GitHub Desktop.
Save odinuv/b6a873fbd59116cddc218b3549a81e2b to your computer and use it in GitHub Desktop.
Testing the untestable: Basic extraction
<?php
$stmt = $pdo->prepare('SELECT …');
$stmt->execute();
while ($row = $stmt->fetch()) {
write_row_to_csv($row);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment