我有一个数组$urls_array
,我如何只将内容而不是其他任何内容保存到文件中?
输入:
Array (
[0] => "http://google.com"
[1] => "http://facebook.com"
[2] => "http://yahoo.com"
)
输出:
http://google.com
http://facebook.com
http://yahoo.com
我尝试使用json_encode($urls_array)
and serialize()
,print_r()
但没有给我想要的干净结果。有什么帮助吗?