Listing 14.20. | |
| ROZDZIAŁ: | 14. Zapisywanie w bazie danych obrazów i plików binarnych |
| TXT: | listing-14-20.txt |
public static function insertIfNotExists($dane)
{
$tmp = Doctrine::getTable('Img')->findOneBySlug($dane['slug']);
if (!$tmp) {
$tmp = new Img();
$tmp->fromArray($dane);
$tmp->save();
}
return $tmp;
}