は画像と広告を表示するファイルのための基本的なフレームワークです:
<?php
// Path to the directory that holds the images
$imageDir = 'images/';
// Make sure an image was requested
if (!isset($_GET['image'])) {
exit('No image requested to display');
}
// Full path to image
$imagePath = $imageDir.$_GET['image'];
// Make sure the image exists
if (!is_file($imagePath)) {
exit("Image doesn't exist!");
}
?>
<html>
<head>
<title><?php echo $imagePath; ?></title>
</head>
<body>
<div>
<!-- HTML for advert goes here -->
<div>Buy Stuff! It's great for wasting your money on!</div>
</div>
<div>
<!-- Display the image -->
<img src="<?php echo $imagePath; ?>" alt="<?php echo $imagePath; ?>" />
</div>
</body>
</html>
これは、多くの部分が欠落しているが、そのように、あなたが何をしたいのあなたの記述がある...
[ cURL](http://php.net/manual/en/book.curl.php)はあなたの友人になります... – DaveRandom
本当ですか?なぜ私はちょうどこのようなことをすることができないのですか?http://zkinformer.com/blog_detail.php?post_id=34 –
申し訳ありません、私はあなたが別のWebページからそれらを取得し、あなた自身でそれらを表示することを意図したと思ったが、これを再読することはおそらくそうではありません - それであなたはどういう問題ですか?あなたはウェブアクセス可能な場所にファイルを保存するだけで、イメージの 'src'でそれらを参照することはできませんか? – DaveRandom