Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I escape a string containing random characters with php for a plist file? htmlentities() seems doesn't seem to be strict enough. For example:

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <string><?php echo htmlentities("@!£$%^&*)}{:|<>/");?></string>
</plist>

doesn't work.

share|improve this question
1  
Can you show what doesn't work? – Pekka 웃 Mar 7 '10 at 20:27
XML parser error: Encountered unknown ampersand-escape sequence at line 3 Old-style plist parser error: Malformed data byte group at line 1; invalid hex – hanno Mar 7 '10 at 20:29
This makes sense because htmlentities is for .. well... HTML. – Chacha102 Mar 7 '10 at 20:30

2 Answers

up vote 7 down vote accepted

CDATA should be the correct way:

 <plist version="1.0">
  <string><![CDATA[<?php echo "@!£$%^&*)}{:|<>/"; ?>]]></string>
 </plist>

The only thing in the content you would have to escape is the actual <![CDATA[ opener itself.

If that doesn't work for some reasons, rawurlencode() turns all non-alphanumeric characters into RFC 1738 codes, which your target may be able to digest more easily.

share|improve this answer
thanks. it works. – hanno Mar 7 '10 at 20:34

Don't all plist start with a <dict>?

htmlentities should work. You only need to escape & to &amp;, < to &lt; and > to &gt;.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.