fork download
  1. <?php
  2.  
  3. $var = 'size=s3435/user=Synergy';
  4. $temp = explode('/', $var);
  5. //Fetch size
  6. $pos = strpos($temp[0], '=');
  7. echo substr($temp[0], $pos+1);
  8.  
  9. //Fetch user
  10. $pos = strpos($temp[1], '=');
  11. echo substr($temp[1], 0, $pos);
  12. echo substr($temp[1], $pos+1);
  13. ?>
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
s3435userSynergy