代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/109435/15557701
pl stlfilt.pl
################################################################################################################
# STLFilt.pl: BD Software STL Error Message Decryptor (a Perl script)
# This vers
www.eeworm.com/read/108695/15579392
pl proxysvr.pl
#!/usr/bin/perl
# Version 1.02 1999-08-27
# Author Cay Horstmann
($url) = @ARGV;
$url =~ tr/+/ /;
$url =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$pos = index($url, "URL=http
www.eeworm.com/read/107693/15603252
pl worm.pl
#!/usr/bin/perl
###############
my $packet =
"\x04\x01\x01\x01\x01\x01\x01\x01".
"\x01\x01\x01\x01\x01\x01\x01\x01".
"\x01\x01\x01\x01\x01\x01\x01\x01".
"\x01\x01\x01\x01\x01\x01\x01\x01".
"\x01\x01
www.eeworm.com/read/106716/15625676
pl gcd.pl
var x,y,rem;
begin
read(x);
read(y);
repeat
rem:=x-y*(x/y);
x:=y;
y:=rem
until rem=0;
write(x)
end.
www.eeworm.com/read/106716/15625680
pl fibonacci.pl
const n=20;
var f1,f2,f,i;
begin
f1:=1;
f2:=1;
i:=1;
while i
www.eeworm.com/read/106716/15625693
pl test.pl
const a=10;
var b,c;
procedure p;
begin
c:=b+a
end;
begin
read(b);
while b#0 do
begin
call p; write(2*c); read(b)
end
end.
www.eeworm.com/read/105796/15658771
pl datalib.pl
#!/usr/bin/perl
# 例如帐号是否重复,过滤或保留字段
sub firstcheck
{
@res = split(/\,/,$reserved);
foreach $r(@res)
{
$r = "\L$r\E";
if ($input{"username"} eq $r)
www.eeworm.com/read/105796/15658772
pl _createpwd.pl
#!/usr/bin/perl
#加密子程序
#
require "cgi-lib.pl";
&ReadParse(*input);
$thisurl = $ENV{'SCRIPT_NAME'};
print "Content-type: text/html\n\n";
if ($input{'convert'})
{ &convert; }
else
www.eeworm.com/read/105796/15658778
pl setup.pl
## 注意:下面所说的设置属性为755,700,777等,根据服务器的设置不同,可能设置有所不同
## 虚拟域名的类型: 子域名 或者 是文件夹的方式
#设置为 subdomain 或者是 folder
#http://xxx.yourdomain.com or http://www.yourdomain.com/xxx
$type = "subdomain";