概述
本文操作环境:Windows7系统、PHP7.1版、DELL G3电脑
php 怎么将数组转大写?
PHP关联数组中如何更改键值为大写
我们有这样一个数组:
$fruits = array('A' => 'Apple', 'B' => 'Banana', 'c' => 'Cherry', 'o' => 'Orange');
登录后复制
我们将里面所有的数组元素值转为大写:
<?php
header("Content-type:text/html;charset=utf-8");
$fruits = array('A' => 'Apple', 'B' => 'Banana', 'c' => 'Cherry', 'o' => 'Orange');
var_dump($fruits);
foreach ($fruits as $key => $value){
$fruits[$key]=strtoupper($value);
}
echo "转换为大写后:";
var_dump($fruits);
?>
登录后复制
使用foreach语句遍历$fruits数组,在循环中使用strtoupper($value)函数将数组元素$value转为大写,因此输出结果为:
推荐学习:《PHP视频教程》
以上就是php 怎么将数组转大写的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是独特鲜花为你收集整理的php 怎么将数组转大写的全部内容,希望文章能够帮你解决php 怎么将数组转大写所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复