MobileAnalysCommand.php 662 B

1234567891011121314151617
  1. <?php
  2. class MobileAnalysCommand extends CConsoleCommand{
  3. public function run($args) {
  4. error_reporting(E_ALL);
  5. ini_set('memory_limit', '1024M');
  6. set_time_limit(0);
  7. $file = file_get_contents('d://no_reg_user.csv');
  8. $info_arr = explode("\r\n",$file);
  9. foreach ($info_arr as $key => $value) {
  10. $user_info = explode(",", $value);
  11. if(@preg_match("/.*(静安|闸北|徐汇|普陀|长宁|黄浦|卢湾|虹口|杨浦).*/", iconv('GB2312', 'UTF-8', $user_info[2]))){
  12. file_put_contents('d://no_reg_user_new.csv',$value."\r\n",FILE_APPEND);
  13. }
  14. }
  15. }
  16. }