fork download
  1. <?php
  2.  
  3. $tmpValue = "\"test\"";
  4.  
  5.  
  6. if(strpos($tmpValue, '"') === 0) {
  7. $newValue = substr($tmpValue, 1, strlen($tmpValue) - 2);
  8. echo $newValue;
  9. }
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
test