Listing 14.22. | |
| ROZDZIAŁ: | 14. Zapisywanie w bazie danych obrazów i plików binarnych |
| TXT: | listing-14-22.txt |
public function execute_show()
{
if (
isset($_GET['slug']) &&
(str_ivslug($_GET['slug'])) &&
($img = Doctrine::getTable('Img')->findOneBySlug($_GET['slug']))
) {
$this->noLayout();
header('Content-Type: image/png');
echo $img['img'];
} else {
$this->execute_404();
}
}