5 lines
73 B
PHP
5 lines
73 B
PHP
|
|
foreach($array as $key => $value)
|
||
|
|
{
|
||
|
|
echo "Key: $key Value: $value";
|
||
|
|
}
|