php 函数 从列表中获取指定值
示列://获取标签列表$tag_list[].=$tag->term_id;}//随机获取标签列表中的一个标签$post_tag=$tag_list[mt_rand(0,...
示列:
// 获取标签列表
$tag_list[] .= $tag->term_id;
}
// 随机获取标签列表中的一个标签
$post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];
===========================
以上,如果得到的标签列表结果是 标签1,标签2,
我不想随机获取标签列表中的一个标签,我想指定得到第二个标签, $post_tag = 这里应该怎么写。
谢谢 展开
// 获取标签列表
$tag_list[] .= $tag->term_id;
}
// 随机获取标签列表中的一个标签
$post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];
===========================
以上,如果得到的标签列表结果是 标签1,标签2,
我不想随机获取标签列表中的一个标签,我想指定得到第二个标签, $post_tag = 这里应该怎么写。
谢谢 展开
1个回答
展开全部
?phpfunction test_defaultargs ( $arg = " default value " ){echo " 参数值为: " . $arg . " <br> " ;}test_defaultargs () ;test_defaultargs ( " new value " ) ;?><?phpfunction makecoffee ( $type = " cappuccino " ){return " Making a cup of $type . " ;}echo makecoffee () ;echo makecoffee ( " espresso " ) ;?>
请注意当使用默认参数时,任何默认参数必须放在任何非默认参数的右侧;否则,可能函数将不会按照预期的情况运行。
<?phpfunction makeyogurt ( $type = " acidophilus " ,$flavour ){return " Making a bowl of $type $flavour . " ;}echo makeyogurt ( " raspberry " ) ; // 这个例子将不会按照我们预期的情况运行。?><?phpfunction makeyogurt ( $flavour , $type = " acidophilus" ){return " Making a bowl of $type $flavour . " ;}echo makeyogurt ( " raspberry " ) ; // 这个例子的输出是:Making a bowl of acidophilus raspberry.?>如果还不明白可以去后盾网问问php专家教师。希望能帮到你。
请注意当使用默认参数时,任何默认参数必须放在任何非默认参数的右侧;否则,可能函数将不会按照预期的情况运行。
<?phpfunction makeyogurt ( $type = " acidophilus " ,$flavour ){return " Making a bowl of $type $flavour . " ;}echo makeyogurt ( " raspberry " ) ; // 这个例子将不会按照我们预期的情况运行。?><?phpfunction makeyogurt ( $flavour , $type = " acidophilus" ){return " Making a bowl of $type $flavour . " ;}echo makeyogurt ( " raspberry " ) ; // 这个例子的输出是:Making a bowl of acidophilus raspberry.?>如果还不明白可以去后盾网问问php专家教师。希望能帮到你。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询