PageRenderTime 45ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/3.0/Testing/Tests/@PHP/standard/strings/md5.php

#
PHP | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 33d41fba272c1ca25401ca318eddaf3c MD5 | raw file
Possible License(s): CPL-1.0, GPL-2.0, CC-BY-SA-3.0, MPL-2.0-no-copyleft-exception, Apache-2.0
  1. [expect php]
  2. [file]
  3. <?
  4. echo md5("")."\n";
  5. echo md5("a")."\n";
  6. echo md5("abc")."\n";
  7. echo md5("message digest")."\n";
  8. echo md5("abcdefghijklmnopqrstuvwxyz")."\n";
  9. echo md5("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789")."\n";
  10. echo md5("12345678901234567890123456789012345678901234567890123456789012345678901234567890")."\n";
  11. ?>