php検索またはリモートファイルのコピー方法
この例は、php検索またはリモートファイルのコピー方法を説明する。皆さんの参考にしてください。具体的な実現方法は以下の通りです。
<?php
if(!@copy('http://someserver.com/somefile.zip','./somefile.zip'))
{
$errors= error_get_last();
echo "COPY ERROR: ".$errors['type'];
echo "<br />
".$errors['message'];
} else {
echo "File copied from remote!";
}
?>
本論文で述べたように、皆さんのphpプログラムの設計に役に立ちます。