导出OpenID为txt文件的方法
导出OpenID为txt文件的方法
public function export(){ $shop = M("Shop"); $arr = $shop->field('openid')->select(); $filename = time().".txt"; for ($i = 0 ;$i < count($arr);$i+=1){ file_put_contents($filename, $arr[$i]["openid"]."\r\n", FILE_APPEND); } Header("Location: $filename"); }
本文来自博客园,作者:方倍工作室,转载请注明原文链接:https://www.cnblogs.com/txw1958/p/11143052.html