I have very, very odd problem with PHP's implode function. It surprisingly adds some white characters (spaces) to one of array's elements.
Here is my code:
$cities = array(...,5792753,...);
$where .= ' AND gr.geo_city IN(' . implode(',', $cities) . ') ';
//it displays something like: ... AND gr.geo_city IN(...,5 792753,...)
//but it should display: ... AND gr.geo_city IN(...,5792753,...)
//PLEASE NOTE SPACES IN THE EXAMPLE ABOVE!!
echo $where;
I have done some debugging and it seems the original values do not contain any white chars. Here is the code I've used to check it:
foreach($cities as $ct)
{
if(strpos($ct,'792753') !== FALSE)
echo $ct;//it displays 5792753, not 5...792753
}
Why does it add these spaces there? Is it some known bug of the implode function?
Thanks!
$where– Adnan Jun 13 '12 at 10:41