のファイル名をエコー単純なecho $image
は、このいずれかのトリックをしないようだ。は画像
<?php
include_once 'class.get.image.php';
// initialize the class
$image = new GetImage;
// just an image URL
$image->source = $_POST["url"];
$image->save_to = 'images/'; // with trailing slash at the end
$get = $image->download('curl'); // using GD
if($get)
{
echo 'The image has been saved.';
echo $image;
}
?>
ここでは、私はそれが、少なくともファイル名表示を望んecho $image;
を挿入した参照class.get.image.phpです画像しかしそれはありません。トリック
あなたは私を救った!ありがとうございました – Zhianc