PageRenderTime 53ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/code/php/aotong/md5.php

http://keli.googlecode.com/
PHP | 9 lines | 8 code | 1 blank | 0 comment | 1 complexity | fd6066b18850ffbaeb066e64b3bb865e MD5 | raw file
  1. <?php
  2. $str = 'apple';
  3. echo md5("keli1234");
  4. if (md5($str) === '1f3870be274f6c49b3e31a0c6728957f') {
  5. echo "Would you like a green or red apple?";
  6. exit;
  7. }
  8. ?>