可以说我有 2 个数组。
$arr1=array("foo"=>"bar", 1=>"one", 2=>"two");
$arr2=array("h"=>"eich", 3=>"three", 4=>"four");
通过使用 file_put_contents 我可以将数组打印到一个新的 php 文件中,如下所示:
<?php
$arr1 = Array
(
"foo"=>"bar",
1=>"one",
2=>"two"
) //need a semicolon here
$arr2 = Array
(
"h"=>"eich",
3=>"three",
4=>"four"
)//need a semicolon here
我的问题是,如何在每个数组结束后获得分号?