equivalent of php function decbin

T

Thomas Theakanath

Perl-php gurus,

I need to port a php program to Perl and wonder the equivalent of
decbin function in PHP could be the following:

sub decbin {
my $num=shift;
my $str = unpack("b*",pack("N",$num));
return $str;
}

Regards
Thomas.
 
T

Thomas Theakanath

Thanks much. As usual, there are multiple ways to do this, per the
FAQ, using sprintf and Vector. My corrected routine would be the
following:
sub decbin {
my $num=shift;
my $str = unpack("B*",pack("N",$num));
return $str;
}

Thomas.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top