fork(5) download
  1. <?php
  2. $str = "spotxify:track:5xioIP2HexKl3QsI8JDlG8";
  3. if (preg_match('/spotify:track:([a-zA-Z0-9]{22})/', $str, $re)) {
  4. $spotifyId = $re[1];
  5. }
  6. echo $spotifyId;
  7. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Standard output is empty