I have a multidimensional array:
Array ( [0] => Array ( [id] => 21 ) )
I need it to be convert it to a string to echo it out and to use it as a variable. How can I do that? I need only the id
.
I was trying to use implode('', $this_array);
, adding (string)
before this array, but does not help...