aximbigfan Posted March 16, 2008 Share Posted March 16, 2008 Hi, I need to get an array, within an array. How do I do this? PHP just gives me an error no matter what. @$settingsa = parse_ini_file("LOGPconf/config.ini"); foreach($settingsa as $active) { $larray = explode("|",$active); } echo $larray; In config.ini, it goes like this: [logs] logone = "|test.txt||test|" logone = "|test2.txt||test2|" Chris Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/ Share on other sites More sharing options...
discomatt Posted March 16, 2008 Share Posted March 16, 2008 What kind of error? can you print_r($settingsa); before your foreach call and post the results? Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493141 Share on other sites More sharing options...
aximbigfan Posted March 16, 2008 Author Share Posted March 16, 2008 What kind of error? can you print_r($settingsa); before your foreach call and post the results? It just says "Array". Chris Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493148 Share on other sites More sharing options...
nevsi79 Posted March 16, 2008 Share Posted March 16, 2008 so it must be a multidimensional array? is it sth like: $chars = array( array( "name" => "Bob", "age" => "20" ), array( "name" => "Jane", "age" => "27" ); the output will be: echo $chars[0][age] - this should give you: 20 now to loop through a multidimensional arrays like this use: foreach ($chars as $c) { while(list($k, $v) = each ($c)) { echo "k ... $v <br/>"; } } Hope this helps Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493151 Share on other sites More sharing options...
discomatt Posted March 16, 2008 Share Posted March 16, 2008 That means it's empty. My guess is it's not parsing your ini file properly. Change @$settingsa = parse_ini_file("LOGPconf/config.ini"); to $settingsa = parse_ini_file("LOGPconf/config.ini"); and seee what kind of errors you're getting Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493152 Share on other sites More sharing options...
aximbigfan Posted March 16, 2008 Author Share Posted March 16, 2008 Removign the @ does nothing. chris Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493159 Share on other sites More sharing options...
discomatt Posted March 16, 2008 Share Posted March 16, 2008 No errors are outputted? parse_ini_file is having problems reading your INI file, and is returning an empty array. That's the issue. Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493178 Share on other sites More sharing options...
aximbigfan Posted March 16, 2008 Author Share Posted March 16, 2008 Got it. Messed up the path to the conf file D'oh Thanks for the help all!! Chris Link to comment https://forums.phpfreaks.com/topic/96341-geting-arrays-wihin-arrays/#findComment-493183 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.