:) i searched in tickets & i found 4 tickets!
http://www.google.com/search?hl=en&q=character+xml+site%3Alaconi.ca%2Ftrac%2Fticket&btnG=Search

http://laconi.ca/trac/ticket/1141 (new bug)
http://laconi.ca/trac/ticket/941 (assigned bug)
http://laconi.ca/trac/ticket/555 (duplicate of #521 witch is closed)
http://laconi.ca/trac/ticket/549 (irreproducible)

so we have 2 related tickets to this problem! (#941 , #1141)

and about htmlentities or preg_replace: both works fine, so you can choose 
witch one you like.

pri...@prince-laptop:~/Desktop$ cat test.php 
<?php

$str = 
"&#1576;&#1607;&#1585;&#1608;&#1586;&#8204;&#1588;&#1593;&#1576;&#1575;&#1606;&#1740;";
echo preg_replace('/[\p{Cc}]/u', '*', $str)."\n" ;
echo preg_replace ('/[\\x00-\\x08\\x0B\\x0C\\x0E-\\x1F]/S', '*', $str)."\n";
echo htmlentities($str, ENT_COMPAT, "UTF-8")."\n";

pri...@prince-laptop:~/Desktop$ php test.php 
&#1576;&#1607;&#1585;&#1608;&#1586;&#8204;&#1588;&#1593;&#1576;&#1575;&#1606;&#1740;
&#1576;&#1607;&#1585;&#1608;&#1586;&#8204;&#1588;&#1593;&#1576;&#1575;&#1606;&#1740;
&#1576;&#1607;&#1585;&#1608;&#1586;&amp;zwnj;&#1588;&#1593;&#1576;&#1575;&#1606;&#1740;
pri...@prince-laptop:~/Desktop$ 


-- 
You Rock! Your E-Mail Should Too! Signup Now at Rock.com and get 250MB of 
Storage!

http://webmail.rock.com/signup/
_______________________________________________
Laconica-dev mailing list
[email protected]
http://mail.laconi.ca/mailman/listinfo/laconica-dev

Reply via email to