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 = 这里应该怎么写。

谢谢
展开
 我来答
醉生1梦雪
2017-08-28 · TA获得超过128个赞
知道小有建树答主
回答量:370
采纳率:0%
帮助的人:117万
展开全部
?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专家教师。希望能帮到你。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式