$postbody, ':userid' => Auth::userid(), ':time' => mktime(0, 0, 0, $_POST['month'], $_POST['day'], $_POST['year']), ':content' => $content, ':photourl' => self::$photourl, ':exif' => $exif, ':place' => $_POST['place'], ':timeup'=>time())); echo json_encode( array( 'id' => DB::query('SELECT id FROM photos ORDER BY id DESC LIMIT 1')[0]['id'], 'errorcode' => 0, 'error' => 0 ) ); } public function __construct() { if ($_FILES['image']['error'] != 4) { $exif = new EXIF($_FILES['image']['tmp_name']); $exif = $exif->getData(); $upload = new UploadPhoto($_FILES['image'], 'cdn/img'); if ($exif === null) { $exif = Json::return( array( 'type' => 'none', ) ); } if (isset($_POST['nomap'])) { $_POST['lat'] = null; $_POST['lng'] = null; } if ($upload->getType() !== null) { $content = Json::return( array( 'type' => 'none', 'copyright' => $_POST['license'], 'comment' => $_POST['descr'], 'lat' => $_POST['lat'], 'lng' => $_POST['lng'] ) ); self::$photourl = $upload->getSrc(); self::create($_POST['descr'], $content, $exif); } } else { echo json_encode( array( 'errorcode' => 'FILE_NOTSELECTED', 'error' => 1 ) ); } } }