What about MySQL max_allowed_packet setting? is it bigger than produced string?

> To: php-general@lists.php.net
> Date: Tue, 24 Mar 2009 15:23:20 +0100
> From: t...@ezl-data.dk
> Subject: Re: [PHP] Problems with implode
> 
> Per Jessen skrev:
> > Andrea Giammarchi wrote:
> > 
> >> Dunno why you guys started talk about utf-8 problems, he has a list of
> >> ids which should contain only unsigned integers, otherwise I do not
> >> get how that query could work with an implode(',', $whatever) 
> > 
> > Very good point - maybe the OP has not yet tested his code that far?  Is
> > there a possibility that some of the id's are _not_ just plain integers
> > made up of 0-9?
> > 
> > /Per
> > 
> 
> And exatly the reason I tried the following:
> $list[] = $row['uid'];
> $list[] = intval($row['uid']);
> $list[] = mb_convert_encoding($row['uid'], 'iso-8859-1');
> $list[] = mb_convert_encoding(intval($row['uid']), 'iso-8859-1');
> 
> My best bet as for now:
> It isn't implode there's the problem, but the length of the string
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

_________________________________________________________________
More than messages–check out the rest of the Windows Live™.
http://www.microsoft.com/windows/windowslive/

Reply via email to