I have an array:
我有一个数组:
$arr_nav = array( array( "id" => "apple",
"url" => "apple.html",
"name" => "My Apple"
),
array( "id" => "orange",
"url" => "orange/oranges.html",
"name" => "View All Oranges",
),
array( "id" => "pear",
"url" => "pear.html",
"name" => "A Pear"
)
);
Which I would like to use a foreach loop to replace (which only allows me to set the number:
我想用foreach循环替换它(它只允许我设置数字:
for ($row = 0; $row < 5; $row++)
with the ability to display a .first
and .last
class for the relevant array values
具有显示相关数组值的.first和.last类的能力
Edit
编辑
I would like the data to be echoed as:
我希望这些数据能够得到回应:
<li id="' . $arr_nav[$row]["id"] . '"><a href="' . $v_url_root . $arr_nav[$row]["url"] . '" title="' . $arr_nav[$row]["name"] . '">"' . $arr_nav[$row]["name"] . '</a></li>' . "\r\n";
Many thanks for your quick responses. * rocks!
非常感谢您的快速回复。*岩石!
4 个解决方案
#1
33
$last = count($arr_nav) - 1;
foreach ($arr_nav as $i => $row)
{
$isFirst = ($i == 0);
$isLast = ($i == $last);
echo ... $row['name'] ... $row['url'] ...;
}
#2
5
<?php
$php_multi_array = array("lang"=>"PHP", "type"=>array("c_type"=>"MULTI", "p_type"=>"ARRAY"));
//Iterate through an array declared above
foreach($php_multi_array as $key => $value)
{
if (!is_array($value))
{
echo $key ." => ". $value ."\r\n" ;
}
else
{
echo $key ." => array( \r\n";
foreach ($value as $key2 => $value2)
{
echo "\t". $key2 ." => ". $value2 ."\r\n";
}
echo ")";
}
}
?>
OUTPUT:
输出:
lang => PHP
type => array(
c_type => MULTI
p_type => ARRAY
)
参考源代码
#3
2
If you mean the first and last entry of the array when talking about a.first and a.last, it goes like this:
如果你说的是数组的第一个和最后一个条目。第一次和一个。最后,它是这样的:
foreach ($arr_nav as $inner_array) {
echo reset($inner_array); //apple, orange, pear
echo end($inner_array); //My Apple, View All Oranges, A Pear
}
arrays in PHP have an internal pointer which you can manipulate with reset, next, end. Retrieving keys/values works with key and current, but using each might be better in many cases..
PHP中的数组有一个内部指针,可以通过重置来操作。检索键/值可以使用键和流,但是在许多情况下,使用它们可能会更好。
#4
0
<?php
$first = reset($arr_nav); // Get the first element
$last = end($arr_nav); // Get the last element
// Ensure that we have a first element and that it's an array
if(is_array($first)) {
$first['class'] = 'first';
}
// Ensure we have a last element and that it differs from the first
if(is_array($last) && $last !== $first) {
$last['class'] = 'last';
}
Now you could just echo the class inside you html-generator. Would probably need some kind of check to ensure that the class is set, or provide a default empty class to the array.
现在,您只需回显html生成器中的类。可能需要进行某种检查以确保已设置了类,或者为数组提供一个默认的空类。
#1
33
$last = count($arr_nav) - 1;
foreach ($arr_nav as $i => $row)
{
$isFirst = ($i == 0);
$isLast = ($i == $last);
echo ... $row['name'] ... $row['url'] ...;
}
#2
5
<?php
$php_multi_array = array("lang"=>"PHP", "type"=>array("c_type"=>"MULTI", "p_type"=>"ARRAY"));
//Iterate through an array declared above
foreach($php_multi_array as $key => $value)
{
if (!is_array($value))
{
echo $key ." => ". $value ."\r\n" ;
}
else
{
echo $key ." => array( \r\n";
foreach ($value as $key2 => $value2)
{
echo "\t". $key2 ." => ". $value2 ."\r\n";
}
echo ")";
}
}
?>
OUTPUT:
输出:
lang => PHP
type => array(
c_type => MULTI
p_type => ARRAY
)
参考源代码
#3
2
If you mean the first and last entry of the array when talking about a.first and a.last, it goes like this:
如果你说的是数组的第一个和最后一个条目。第一次和一个。最后,它是这样的:
foreach ($arr_nav as $inner_array) {
echo reset($inner_array); //apple, orange, pear
echo end($inner_array); //My Apple, View All Oranges, A Pear
}
arrays in PHP have an internal pointer which you can manipulate with reset, next, end. Retrieving keys/values works with key and current, but using each might be better in many cases..
PHP中的数组有一个内部指针,可以通过重置来操作。检索键/值可以使用键和流,但是在许多情况下,使用它们可能会更好。
#4
0
<?php
$first = reset($arr_nav); // Get the first element
$last = end($arr_nav); // Get the last element
// Ensure that we have a first element and that it's an array
if(is_array($first)) {
$first['class'] = 'first';
}
// Ensure we have a last element and that it differs from the first
if(is_array($last) && $last !== $first) {
$last['class'] = 'last';
}
Now you could just echo the class inside you html-generator. Would probably need some kind of check to ensure that the class is set, or provide a default empty class to the array.
现在,您只需回显html生成器中的类。可能需要进行某种检查以确保已设置了类,或者为数组提供一个默认的空类。