If I annotate a single quote mark on a image, I will output like this: I\'m cool
$status = $this->_im->annotateImage($this->_draw, 0, 0, $options['angle'], $text);
who can help me? thanks in advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is probably caused by
magic_quotes_gpc. You can remove the escaped quote usingstripslashes:You can reconfigure your server to disable magic quotes if you wish, but if you’re working on an existing website, I wouldn’t necessarily recommend that until you fully understand the implications of doing so and feel confident in your ability to safely sanitise any data you use in database queries.