1
4

1 回答 1

1

Somewhere in your code the string is html encoded which turns ’ to #039; then at following step

$clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $clean);

characters # and ; are stripped and you end up with 039

于 2012-10-31T08:53:08.437 回答