新人,allow_url_fopen遇到问题!

我现在有一php文件,它需要allow_url_fopen支持才能用。我家又没有电脑,所以谁有支持allow_url_fopen服务器的帮忙存放该文件(供大家用)好吗?
万分感谢!
源代码:
<head>

<meta charset='utf-8'>
</head>
<?php
$url =$_GET['url'];
$openfile=fopen($url, "r");
if ($openfile==false)
    echo ("failed open file $url ");
$head=fread($openfile,700);
$pattern="(<title>)(.*)(</title>)";
$t=ereg($pattern,$head,$tle);
$titl=$tle[0];       
$title=substr($titl,7,-8);
echo $title;//"<input type='text' name='title' value=  >"
?>