Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please help me to convert array to string.

array look like this:

Array
(
    [0] => Array
        (
            [0] => Array
                (
                    [red] => 255
                    [green] => 255
                    [blue] => 255
                    [alpha] => 127
                )

            [1] => Array
                (
                    [red] => 255
                    [green] => 255
                    [blue] => 255
                    [alpha] => 127
                )
             ...

        )

)

I tried to use the implode function, but no result...

$string = implode(", ", $pxlCorArr);

PS: Sorry for my english i from ukraine.

share|improve this question
2  
What do you want the output string to look like? – Tim Cooper Nov 4 '12 at 12:30
You would surely get some result but it looks like you are converting a 2 dimensional array to a string. As Tim asked, what should the output look like? – Michael Berkowski Nov 4 '12 at 12:31
i whant to output red,green,blue,alpha – Volodya Daniliv Nov 4 '12 at 12:32
@VolodyaDaniliv Do you want an array of strings red,green,blue,alpha? – Michael Berkowski Nov 4 '12 at 12:33
yes, i need one string like this: 255.255.255.127,255.255.255.123,... – Volodya Daniliv Nov 4 '12 at 12:35

4 Answers

up vote 2 down vote accepted

That would be another possibility, as a function to which you pass your initial array and the function returns the string you needed:

function getRGBAlpha($pxlCorArr) {

    $rgbVals = array();
    foreach($pxlCorArr as $subArr) {
        if(is_array($subArr)) {
            foreach($subArr as $colValues) {
                $rgbVals[] = implode('.', $colValues);
            }
        }
    }

    return implode(',', $rgbVals);
}

and so you could do the following, somewhere in your code, to get the output you needed:

echo getRGBAlpha($pxlCorArr);

should output:

255.255.255.127,255.255.255.127
share|improve this answer
1  
thx you so much! – Volodya Daniliv Nov 4 '12 at 13:25

Array:

$pxlCorArr = 
  array(
      array (
           array('red' => 255, 
                 'green' => 255,
                 'blue' => 255,
                 'alpha' => 127
           ),

           array('red' => 255,
                 'green' => 255,
                 'blue' => 255,
                 'alpha' => 127
           )
      )
  );

Code:

$output = '';
foreach ($pxlCorArr as $subArray) {
    if(is_array($subArray)) {
        foreach ($subArray as $subArray2) {
            if(is_array($subArray2)) {
                $output .= implode ('.', $subArray);
                $output .= ',';
            }
        }
    }
}
$output = rtrim($output, ',');

Output:

255.255.255.127,255.255.255.127

share|improve this answer
implode() would be less expensive, instead of the whole concatenation and trimming ;-) – Havelock Nov 4 '12 at 12:43
@Havelock You're right, corrected my answer! =) – Tivie Nov 4 '12 at 12:50
tell me please where i need to insert input array – Volodya Daniliv Nov 4 '12 at 13:06
just change $array to the name of your array, which I guess is $pxlCorArr, right? – Tivie Nov 4 '12 at 13:11
thx! but result is: Array.Array.Array.Array.Array.Array.Array.Array.Array. – Volodya Daniliv Nov 4 '12 at 13:15
show 3 more comments
Array
(
    [0] => Array
        (
            [0] => Array
                (
                    [red] => 255
                    [green] => 255
                    [blue] => 255
                    [alpha] => 127
                )

            [1] => Array
                (
                    [red] => 255
                    [green] => 255
                    [blue] => 255
                    [alpha] => 127
                )
             ...

        )

)


$string = '';
$array = $exists_array[0];
foreach ($array as $key => $value) {
$string .= $key." : ".$value."\n";
}
print $string;
share|improve this answer

Using array_walk over lambda function:

  $implodevals =  create_function('&$val', '$val = implode(".", $val);');
  array_walk($array, $implodevals);
  print rtrim(implode(", ", $array), ",");

Input array:

   $array = Array
    (
        0 => Array
            (
                "red" => 255,
                "green" => 255,
                "blue" => 255,
                "alpha" => 127
            ),

        1 => Array
            (
                "red" => 255,
                "green" => 255,
                "blue" => 255,
                "alpha" => 127,
            )



     );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.