Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a small problem with the explode function. I have a string like this:

$response:"online,ksksuems,3428939,670605083faeb7750e1afc1010f0f66f8ef0025a,File1.zip
offline,iwksksiw,,, offline,kdlsiwie,,, offline,jdmsmwus,,,
online,uekseks,4023702,37d97c816afdfb10857057d870e74e8774e2bf8a,File2.zip
online,jwksjwa,8860421,20b5e3154653f24963d005cd873917d3cc0a0fe2,File3.rar
online,jsusneus,4912753,9489a47bac4d2a4f7f6810cb37f60924ef48fc48,File4.rar
online,udjdjsis,1177526,5d1da2a1aebae206908ef6d88105f5272ab423e0,File5.zip"

Now I wanted to use the explode function:

list($fileStatus, $fileId, $fileSize, $fileSha1, $fileName) = explode(",", $response);

But I will only get 1 response, if I print the content of $fileStatus. My Question now, how can i get an array for each variable? So that i have "array(ksksuems => online, iwksksiw => offline);" ?

share|improve this question
1  
You have a syntax error. Did you mean $response=? Is your data truly line separated? Why not read each line in (or split on the lines) before splitting by commas? –  Brad Feb 16 '14 at 21:38

2 Answers 2

up vote 0 down vote accepted

This should work -

$arr = Array();
$lines = explode("\r\n", $response);

//print the exploded lines here.
var_dump($lines);
/*
    Expected output -
    array
      0 => string 'online,ksksuems,3428939,670605083faeb7750e1afc1010f0f66f8ef0025a,File1.zip' (length=74)
      1 => string 'offline,iwksksiw,,, offline,kdlsiwie,,, offline,jdmsmwus,,,' (length=59)
      2 => string 'online,uekseks,4023702,37d97c816afdfb10857057d870e74e8774e2bf8a,File2.zip' (length=73)
      3 => string 'online,jwksjwa,8860421,20b5e3154653f24963d005cd873917d3cc0a0fe2,File3.rar' (length=73)
      4 => string 'online,jsusneus,4912753,9489a47bac4d2a4f7f6810cb37f60924ef48fc48,File4.rar' (length=74)
      5 => string 'online,udjdjsis,1177526,5d1da2a1aebae206908ef6d88105f5272ab423e0,File5.zip' (length=74)
*/


foreach($lines as $line){
    list($fileStatus, $fileId, $fileSize, $fileSha1, $fileName) = explode(",", $line);
    $arr[$fileId] = $fileStatus;
}
var_dump($arr);
/*
    OUTPUT-
    array
      'ksksuems' => string 'online' (length=6)
      'iwksksiw' => string 'offline' (length=7)
      'uekseks' => string 'online' (length=6)
      'jwksjwa' => string 'online' (length=6)
      'jsusneus' => string 'online' (length=6)
      'udjdjsis' => string 'online' (length=6)
*/
share|improve this answer
    
Thanks, it seems like a good solution, but if I try it, it will only give me the first line: array(1) { 'ksksuems' => string(6) "online" } –  marco Feb 17 '14 at 16:43
    
Oh... It seems to be working on my end. Even here is it is working - codepad.org/QfTKGcGl –  Kamehameha Feb 17 '14 at 18:10
    
...That's strange, if i copy your code, i will see this in my browser: (modplace.de/mp-php/explode.php) –  marco Feb 17 '14 at 19:05
    
Hmm... Try echoing the code after the explode statement. I think the content in $response variable is different. –  Kamehameha Feb 17 '14 at 19:12
    
Now I have echoed the $response variable after the first explode statement. –  marco Feb 17 '14 at 19:15

You need to use explode() on your response to put the individual responses into an array and then loop through it to get each other values.

Assuming a the new line character of \n as the separator:

$responses = explode("\n", $response);
foreach ($responses as $resp) {
    list($fileStatus, $fileId, $fileSize, $fileSha1, $fileName) = explode(",", $resp);
    // do stuff
}
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.