悲剧,绝对的悲剧,悲剧中的悲剧。
发布时间:2015-11-11 02:21:09
While it is probably better to run a PSGI based server, than a CGI-based server it can be also very useful to learn how to write CGI scripts. Especially if you need to maintain one.This article will help you set up an Apache web server to run CGI scripts.Background start .........【阅读全文】
发布时间:2015-11-09 23:45:59
我们在通过文件句柄读取文件内容的时候,一般都是顺序读取的。其实 Perl 中提供了改变读取位置的方法,就是 seek 函数。seek 函数的使用方法是:seek FILEHANDLE,POSITION,WHENCE其中,position 代表偏移的字节数,whence 有三种选择,分别是SEEK_SET, 也就是 0,代表文件开头SEEK_CUR, 也就是 .........【阅读全文】