fork(1) download
  1. <?
  2. $RE=<<< HEREDOC
  3. ^
  4. (?:
  5.   [a-zA-Z0-9]{5}
  6.   (?(?=-[a-zA-Z0-9])-)
  7. ){5}
  8. \$
  9. HEREDOC;
  10. $text=file_get_contents("php://stdin");
  11. echo preg_match("/$RE/x", $text);
  12. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
stdout
1