vote up 0 vote down star
$serializer = new XML_Serializer($options); $serializer->serialize($some_array);
$output = $serializer->getSerializedData();

I want to surround an arbitrary element generating XML with an above cord in CDATA, but I can't do it. Will not there be any good method?

XML_SERIALIZER_OPTION_CDATA_SECTIONS = true When I used it with this option, CDATA sticks to all data.

flag

41% accept rate

1 Answer

vote up 0 vote down

Just put the cdata tags around the text you want to be in cdata and turn off the automatic cdata option.

link|flag

Your Answer

Get an OpenID
or

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