仅插入没有值的数组键
我在 PHP 中有以下代码:
$keys = array('a', 'b', 'c');
$data = array();
$data[0] = array_fill_keys($keys,'');
在一些后续代码之后,当数组集为空时,它返回:
a,b,c
,,,
我已经精简到问题是 $data[0] = array_fill_keys($keys,'' );
我该怎么做才能得到结果:
a,b,c
谢谢。
I have the following code in PHP:
$keys = array('a', 'b', 'c');
$data = array();
$data[0] = array_fill_keys($keys,'');
After some follow-up code, when the array set is empty, it returns:
a,b,c
,,,
I've slimmed down to the problem is $data[0] = array_fill_keys($keys,'');
What can I do to have the result as:
a,b,c
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将输出字母 a 和 a,b,c,
rtrim()
函数从字符串右侧删除字符,左侧使用ltrim()
it will output the letter a and a,b,c,
rtrim()
function remove chars from right side of the strig, for left side useltrim()