Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
A quick test:

Perl

use Digest::MD5 qw(md5_hex); print "1: foo => ", md5_hex("foo"), "\n"; print "2: bar => ", md5_hex("bar"), "\n"; print "3: 123 => ", md5_hex(123), "\n"; print "4: empty => ", md5_hex(""), "\n";

Output

1: foo => acbd18db4cc2f85cedef654fccc4a4d8 2: bar => 37b51d194a7513e45b56f6524f2d51f2 3: 123 => 202cb962ac59075b964b07152d234b70 4: empty => d41d8cd98f00b204e9800998ecf8427e

PHP

<? echo "1: foo => ", md5("foo"), "\n"; echo "2: bar => ", md5("bar"), "\n"; echo "3: 123 => ", md5(123), "\n"; echo "4: empty => ", md5(""), "\n"; ?>

Output

1: foo => acbd18db4cc2f85cedef654fccc4a4d8 2: bar => 37b51d194a7513e45b56f6524f2d51f2 3: 123 => 202cb962ac59075b964b07152d234b70 4: empty => d41d8cd98f00b204e9800998ecf8427e

gav^


In reply to Re: MD5 compatibility in PHP by gav^
in thread MD5 compatibility in PHP by strredwolf

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-03-28 12:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found