Perl知识点滴

#  函数多返回值

$v1 = 'abc';
$v2 = 'bcd';
($v3, $v4) = upcase($v1, $v2);
sub upcase{
my @parms = @_;
for (@parms)
{
tr/a-z/A-Z/
}
return wantarray ? @parms : $parms[0];
}
print $v3, $v4;


# 取得数组长度
@a=(1, 2, 3);
my $alen = @a;
print $alen;
@aa = ([1,"111"], [2, '2222'], [3, '3333'], [4, '4444']);
my $aalen = @aa;
print $aalen;


#遍历数组

my @key_words = (
'泰迪',
'哈士奇',
'德牧'
);

foreach my $v (@key_words) {
print $v, "\n";
}


# 操作MySQL

use DBI;

my $dsn = "DBI:mysql:database=db1;host=localhost";
my $user = 'root';
my $password = 'mypassword';

$dbh = DBI->connect($dsn,$user,$password);       #连接数据库

$dbh->do("SET NAMES gbk"); 

my ($dbh,$sth,@ary);

$dbh->do("update test set f1 = 1"); # 修改

$sth = $dbh->prepare("select f1,f2,f3 from test");  #查询
$sth->execute();

while(my(@row) = $sth->fetchrow_array()){

 push @ary, [@row];# 取记录到数组
my($f1, $f2, $f3)=@{$row};#取记录到变量
}

$sth->finish;

$dbh->disconnect;


# 创建模块BankAccount.pm, 内容如下:

package BankAccount;
use Exporter;
@ISA=('Exporter');
@EXPORT_OK = ( 'deposit');

$total = 0;
sub deposit {
my($amount) = @_;
$total += $amount;
print "you now have $total dollars \n";
}
return 1;


# 使用模块BankAccount

use BankAccount;
BankAccount::deposit(10);
print $BankAccount::total;


# 操作文本文件

open TXT,">c:/a.txt";
print TXT "test...\n";
close TXT;



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值