fork download
  1. <?php
  2.  
  3. $str = "OR '1'='1'";
  4.  
  5. echo htmlentities($str, ENT_QUOTES);
  6.  
  7. echo("\n\n\r");
  8.  
  9. $str1 = 'OR "1""="1"';
  10.  
  11. echo htmlentities($str1, ENT_QUOTES);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
OR &#039;1&#039;=&#039;1&#039;


OR &quot;1&quot;&quot;=&quot;1&quot;