我有 2 个 php 数组,$array1
并且$array2
,如何仅在同一行制表符上打印数组的内容?
输入:
Array (
[0] => "100"
[1] => "98"
[2] => "95"
)
Array (
[0] => "http://google.com"
[1] => "http://facebook.com"
[2] => "http://yahoo.com"
)
输出:
http://google.com 100
http://facebook.com 98
http://yahoo.com 95
我试过了:file_put_contents('output.txt', $array1, "\t", $array2 );
但是函数只能带2个参数!有简单的解决方法吗?