fsockopen() us中获取文件
打开socket
使用fsockopen()来打开一个socket。这个函数在php3和php4中都存在。函数的原型如下:
<?php
intfsockopen
(string hostname,
int port [,
int errno [,
string errstr [,
double timeout]]])
?>
对于网络主机,它将建立一个tcp的socket的连接到主机名的端口上。主机名可以是域名或者ip地址。对于udp连接,你需要明确指出其协议:udp://hostname。对于unix主机,主机名将在socket的路径中使用,在这个例子中端口必须设置成0。可选项timeout可以用来设置连接超时的秒数。关于fsockopen()的更多信息可以访问 网络新闻传输协议(nntp)访问一个usenet新闻服务器需要用到一个特别的协议,称作nntp,即网络新闻传输协议标准。这个协议的详细资料在rfc977中,你可以在中查看到。这个文档详细的描述了如何使用不同的命令来连接并且和nntp服务器对话。 连接服务器连接到nntp服务器需要知道服务器的主机名(或者ip地址)和它将要监听的端口。另外建议你加上一个超时的时间,这样连接失败的时候就不会“冻结”程序。
<?php
$cfgserver = "your.news.host";
$cfgport = 119;
$cfgtimeout = 10;
// open asocket
if(!$cfgtimeout)
// without timeout
$usenet_handle = fsockopen($cfgserver, $cfgport);
else
// with timeout
$usenet_handle = fsockopen($cfgserver, $cfgport, &$errno, &$errstr, $cfgtimeout);
if(!$usenet_handle) {
echo"connexionfailedn";
exit();
}
else {
echo"connectedn";
$tmp = fgets($usenet_handle, 1024);
}
?>
与服务器交互现在我们已经连接上服务器了,而且能够通过先前打开的socket连接与服务器进行交互。让我们对服务器说“我们要从某一新闻分组中获取到最新的10篇文章”。rfc977定义了如何选择正确的新闻分组的命令,如下:groupggg必需的参数ggg是你将要选择的新闻分组的名字,比如net.news。使用list命令你可以获取到一组有效的新闻列表。成功选择响应会返回组中首尾两篇新闻的新闻号以及对存档新闻号估计。比如
chrome:~$ telnetmy.news.host 119trying aa.bb.cc.dd...connected tomy.news.host.escape character is‘^]
‘.200 my.news.hostinternetnews nnrp server inn 2.2.2 13-dec-1999 ready (posting ok).group alt.
test211 232 222996 223235alt.testquit205 .
在接受到命令“group alt.test”,新闻服务器返回了“211232 222996 223235 alt.test”。其中211是rfc标识码(简单的解释说命令已经成功的执行—查看rfc你可以获取更加详细的资料),返回信息说明其中有232篇文章,其中最旧的新闻的索引号是222996,而最新的新闻索引号是223235。现在让我们计算下:222996+232并不等于232235。这丢失的文章或者从这服务器移除出去了,或者被他的作者取消了(是的,这是可能的,也是很容易实现的),或者是删除了。小心起见,在选择新闻分组之前,服务器可能需要认证,当然这是由服务器是否公开或者私有来决定的。一般是允许任何人获取新闻,但发表新闻需要通过认证。
<?php
//$cfguser = "xxxxxx";
//$cfgpasswd = "yyyyyy";
$cfgnewsgroup = "alt.php";
// identification required on private server
if($cfguser) {
fputs($usenet_handle, "authinfo user".$cfguser."n");
$tmp = fgets($usenet_handle, 1024);
fputs($usenet_handle, "authinfo pass ".$cfgpasswd."n");
$tmp = fgets($usenet_handle, 1024);
// check error
if($tmp != "281okrn") {
echo "502authentication errorn";
exit();
}
}
// select newsgroup
fputs($usenet_handle, "group ".$cfgnewsgroup."n");
$tmp = fgets($usenet_handle, 1024);
if($tmp == "480 authentication required for commandrn") {
echo "$tmpn";
exit();
}
$info = split(" ", $tmp);
$first = $info[2];
$last = $info[3];
print "first : $firstn";
print "last : $lastn";
?>
获取一些文章现在我们已经有最新文章的a索引号,那就能很容易的获取最新的十篇文章。rfc977指出使用article命令可以和文章的索引号或者消息的id一起使用。为了小心起见,在这里,文章的索引号和消息id是不同的,因为每个新闻服务器定义不同,所以在不同的新闻服务器上相同文章的索引号都会不一样的,但是消息id好是唯一的(包含在文章的头部中)
<?php
$cfglimit = 10;
// upload last articles
$boucle=$last-$cfglimit;
while ($boucle <= $last) {
set_time_limit(0);
fputs($usenet_handle, "article$bouclen");
$article="";
$tmp = fgets($usenet_handle, 4096);
if(substr($tmp,0,3) != "220") {
echo "+----------------------+n";
echo "error onarticle $bouclen";
echo "+----------------------+n";
}
else {
while($tmp!=".rn") {
$tmp = fgets($usenet_handle, 4096);
$article = $article.$tmp;
}
echo "+----------------------+n";
echo "article$bouclen";
echo "+----------------------+n";
echo "$articlen";
}
$boucle++;
}
?>
以上就是php fsockopen() usenet中获取文件的内容。