示例#1
0
文件: Export.php 项目: jv10/pimpon
 public static function doExport(array $userCollection)
 {
     self::$exportFile = self::getExportFilePath();
     self::openExportFile();
     array_walk($userCollection, 'PimPon_User_Export::exportUser');
     self::closeExportFile();
     return self::$exportFile;
 }