このコードに画像のサイズ変更機能を追加できるようにしたいだけです。
<?php
include '../../inc/config.php';
if(!isset($_REQUEST['image'])) die('Nenhuma imagem definida!');
$size = isset($_REQUEST['size']) ? $_REQUEST['size'] : 'full';
$image = $_REQUEST['image'];
$img_hash = $PDO->prepare("SELECT url FROM missionary_photos WHERE hash = :hash");
$img_hash->bindValue(':hash', $image);
$img_hash->execute();
$img_hash = $img_hash->fetchAll(PDO::FETCH_ASSOC);
$img_url = SITE_URL.$img_hash[0]['url'];
$info = getimagesize($img_url);
header('Content-type: '.$info['mime']);
readfile($img_url);
何か案は?