[ create a new paste ] login | about

Link: http://codepad.org/jnbexIyw    [ raw code | output | fork ]

PHP, pasted on Jan 16:
1
2
3
4
5
6
7
8
<?php

$str = 'this is some \" string';

$filenew = str_replace('\"' , '"', $str);
echo $filenew;

?>


Output:
1
this is some " string


Create a new paste based on this one


Comments: