fork download
  1. <?php
  2. // 参考資料
  3. // トリップ (電子掲示板) - Wikipedia
  4. // http://j...content-available-to-author-only...a.org/wiki/%E3%83%88%E3%83%AA%E3%83%83%E3%83%97_%28%E9%9B%BB%E5%AD%90%E6%8E%B2%E7%A4%BA%E6%9D%BF%29
  5.  
  6. $tripkey = "#istrip"; // トリップキー文字列(# 付き)
  7. $tripkey = substr($tripkey,1);
  8. $salt = substr($tripkey.'H.',1,2);
  9. $salt = preg_replace("/[^\.-z]/", ".", $salt);
  10. $salt = str_replace(str_split(":;<=>?@[\\]^_`"), str_split("ABCDEFGabcdef"), $salt);
  11. $trip = crypt($tripkey,$salt);
  12. $trip = substr($trip,-10);
  13. $trip = '◆'.$trip;
  14. print "$trip";
  15.  
  16.  
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
◆/WG5qp963c