用字符串中的键转换 php 数组?
我是 php 开发新手,需要您的帮助。
我已读取文件的列,我想保留在数组中 只有不同的值
我在一段时间(fgetcsv)循环中使用此代码执行此操作,
$sex_array = array();
isset($sex_array[$sex])?$sex_array[$sex]++:$sex_array[$sex]=1;
我的数组格式为 Array ( [man] => 33 [woman] => 141 )
我怎样才能创建一个变量以及当我打印它时 男人:33,女人:141
我尝试内爆,但我拿了 33,141
I am novice in php development and I need your help.
I have read the column of a file and I want to keep in an array
only the distinct values
I do it with this code in a while (fgetcsv) loop
$sex_array = array();
isset($sex_array[$sex])?$sex_array[$sex]++:$sex_array[$sex]=1;
my array is in format
Array ( [man] => 33 [woman] => 141 )
How can I make a variable and when I print it to take
man:33,woman:141
I tried implode but I take 33,141
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看从页面中获取的 foreach :
look at foreach taken from the page: