& 引用传值

复制代码
    public function ko(){

        $arr_1 = [
            ['name' => 'zhang0','sex' =>   0],
            ['name' => 'zhang1','sex' =>   1],
            ['name' => 'zhang2','sex' =>   0],
            ['name' => 'zhang3','sex' =>   1],
            ['name' => 'zhang4','sex' =>   0]
        ];

        $arr_2 = [
            ['name' => 'li0','sex' =>   0],
            ['name' => 'li1','sex' =>   1],
            ['name' => 'li2','sex' =>   0],
            ['name' => 'li4','sex' =>   0]
        ];

        foreach ($arr_1 as &$v){
            $v['sex_str'] = '';
        }

        $result = $arr_1;
        foreach ($arr_2 as $v){
            $v['sex_str'] = '';
        }

        dump($arr_1);
        dump($arr_2);
        dump($result);
        exit;
    }


<pre>array(5) {
[0] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang0&quot;
[&quot;sex&quot;] =&gt; int(0)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[1] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang1&quot;
[&quot;sex&quot;] =&gt; int(1)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[2] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang2&quot;
[&quot;sex&quot;] =&gt; int(0)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[3] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang3&quot;
[&quot;sex&quot;] =&gt; int(1)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[4] =&gt; &amp;array(3) {
[&quot;name&quot;] =&gt; string(3) &quot;li4&quot;
[&quot;sex&quot;] =&gt; int(0)
[&quot;sex_str&quot;] =&gt; string(3) &quot;女&quot;
}
}
</pre><pre>array(4) {
[0] =&gt; array(2) {
[&quot;name&quot;] =&gt; string(3) &quot;li0&quot;
[&quot;sex&quot;] =&gt; int(0)
}
[1] =&gt; array(2) {
[&quot;name&quot;] =&gt; string(3) &quot;li1&quot;
[&quot;sex&quot;] =&gt; int(1)
}
[2] =&gt; array(2) {
[&quot;name&quot;] =&gt; string(3) &quot;li2&quot;
[&quot;sex&quot;] =&gt; int(0)
}
[3] =&gt; array(2) {
[&quot;name&quot;] =&gt; string(3) &quot;li4&quot;
[&quot;sex&quot;] =&gt; int(0)
}
}
</pre><pre>array(5) {
[0] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang0&quot;
[&quot;sex&quot;] =&gt; int(0)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[1] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang1&quot;
[&quot;sex&quot;] =&gt; int(1)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[2] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang2&quot;
[&quot;sex&quot;] =&gt; int(0)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[3] =&gt; array(3) {
[&quot;name&quot;] =&gt; string(6) &quot;zhang3&quot;
[&quot;sex&quot;] =&gt; int(1)
[&quot;sex_str&quot;] =&gt; string(3) &quot;男&quot;
}
[4] =&gt; &amp;array(3) {
[&quot;name&quot;] =&gt; string(3) &quot;li4&quot;
[&quot;sex&quot;] =&gt; int(0)
[&quot;sex_str&quot;] =&gt; string(3) &quot;女&quot;
}
}
</pre>

 
复制代码

 

posted @   盘思动  阅读(129)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)
点击右上角即可分享
微信分享提示