Jul. 21st, 2006

metawidget: A platypus looking pensive. (Default)

update: fixed with help from [livejournal.com profile] plautus (and an interesting alternate explanation from [livejournal.com profile] tylerpistol)


I'm writing some PHP to take XML from a file. The file's in ISO-8859-1, and contains French accents and typesetter's quotes in its character data and some of its attributes. I've taken care to make the parser adapt itself to the character set and demanded that its target character set is also ISO-8859-1:

$xml_parser = xml_parser_create("");
xml_parser_set_option($xml_parser,XML_OPTION_TARGET_ENCODING,"ISO-8859-1");
xml_parser_set_option($xml_parser,XML_OPTION_SKIP_WHITE, 1);
xml_parser_set_option($xml_parser,XML_OPTION_CASE_FOLDING, 0);

...

I set up a tag handler to turn an "in_prose" variable on and off (based, not surprisingly, on whether the parser is inside a "prose" element), when it's on I want to suck it into an array element using my cdataHandler function:

...

function cdataHandler($parser,$data){
	if ($_SESSION["in_prose"]){
		$_SESSION["evenements"][$_SESSION["current_event"]]["prose"]=$data;
	}
}

Alas, it tends to chop off the beginning of the text. It's not predictably before any given character, or any predictable length, as far as I can tell. It's just dismembered when I echo it back. Any idea what might be causing this? Any safety measures I can take?

metawidget: A platypus looking pensive. (Default)
In a brief conversation with [livejournal.com profile] denkizero and [livejournal.com profile] dzuunmod, we came up with the idea that Indian food (at least at our local place, Dosti's) is served spicier if you ask for, say, a lamb madras than a chicken madras. Something along the lines of "if you order lamb, you're not a typical North American who can't handle their spices."

I was wondering if anyone else had noticed this.

Profile

metawidget: A platypus looking pensive. (Default)
metawidget
Page generated Jun. 20th, 2025 07:32 am

June 2025

S M T W T F S
123 4567
89 1011121314
15 161718192021
22232425262728
2930     

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Powered by Dreamwidth Studios