[PHP] Converting a Unicode code to related charachter

2011-12-18 Thread Ali Asghar Toraby Parizy
Hi. As I was writing a php code last week, I struggled with a function that was supposed to convert Unicode code to a character. At last I wrote this function: function unicodeToChr($param) { $a =json_decode('{"t":"'.$param.'"}'); return $a->t; } In this function the $param sho

Re: [PHP] Converting a Unicode code to related charachter

2011-12-18 Thread Fatih P.
there is iconv to do this. you should better check that. On Sun, Dec 18, 2011 at 11:33 AM, Ali Asghar Toraby Parizy < aliasghar.tor...@gmail.com> wrote: > Hi. > As I was writing a php code last week, I struggled with a function that was > supposed to convert Unicode code to a character. At last

Re: [PHP] Working on a Subsummary Report

2011-12-18 Thread Jim Lucas
On 12/17/2011 6:14 PM, DealTek wrote: >>> >> >> for the above to work right, you will need to loop through the mysql result >> set >> one time. Placing all the results in to one large array. Then you can loop >> through the array as many times as needed. >> >> What you will probably find is that

Re: [PHP] Re: Preferred Syntax

2011-12-18 Thread Robert Cummings
On 11-12-17 09:42 AM, Eric Butera wrote: Hi Adam, Thanks for the reply, noted! I was coming from the angle that I've had to deal with a lot of code that is 2000 lines of php/html/javascript inside heredocs, mixed quote escaping, etc. I was hoping to prevent that from becoming a new thing in th