Listing 14.15. | |
| ROZDZIAŁ: | 14. Zapisywanie w bazie danych obrazów i plików binarnych |
| TXT: | listing-14-15.txt |
public function execute_show()
{
if (
isset($_GET['slug']) &&
($plik = PlikPeer::retrieveBySlug($_GET['slug']))
) {
$this->noLayout();
header('Content-Type: ' . $plik->getTypmime());
echo stream_get_contents($plik->getDane());
} else {
$this->execute_404();
}
}