Jump to content

Geting arrays wihin arrays...


aximbigfan

Recommended Posts

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

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 :D

 

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.