zoukankan      html  css  js  c++  java
  • mojo 关闭utf8

    [root@wx03 ~]# cat test.pl 
    use Mojolicious::Lite;
    use JSON qw/encode_json decode_json/;  
    use Encode;
    no strict;
    use JSON; 
    use Data::Dumper;
    #no  utf8;
    # /foo?user=sri
     get '/admin/api/menu' => sub {
              my $c = shift;
              print "测试更健康
    ";
             open (LOG1 ,"<",'/data01/applog_backup/zj-api01-catalina.out') or die  $!;
                         while (<LOG1>) {
                                            my $phone='18072722237';
    					#2016-03-09 09:35:12,380 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为132435,本验证码5分钟内有效。 to phoneNo:18072722237 succeed!
    								 
    					if ( ($phone) and ($_ =~/$phone/) and ($_ =~/SMSUtils/) ){$str=$_;
    					
    				#	my $d=encode_utf8('验证');
    					my $d='验证';
                                            
    					print "1-------$str is $str
    ";
    					next if ($str !~ /$d/);
    					print "2--------$str is $str
    ";
    					push (@arr1 ,$str);
    					}};
    					
    					close LOG1;
              $c->render(text =>  "测试更健康" );
    };
    				   
    
    
      app->start;
      
      此时接口返回;
      [root@wx03 ~]# morbo test.pl 
    
    Server available at http://127.0.0.1:3000
    [Thu Jun 30 19:50:58 2016] [debug] GET "/admin/api/menu"
    [Thu Jun 30 19:50:58 2016] [debug] Routing to a callback
    Wide character in print at /root/test.pl line 11.
    测试更健康
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    [Thu Jun 30 19:50:58 2016] [debug] 200 OK (0.00104s, 961.538/s)
    
    
    
    
    
    
    
    
    
    /******
    
    
    [root@wx03 ~]# cat test.pl 
    use Mojolicious::Lite;
    use JSON qw/encode_json decode_json/;  
    use Encode;
    no strict;
    use JSON; 
    use Data::Dumper;
    #no  utf8;
    # /foo?user=sri
     get '/admin/api/menu' => sub {
              my $c = shift;
              print "测试更健康
    ";
             open (LOG1 ,"<",'/data01/applog_backup/zj-api01-catalina.out') or die  $!;
                         while (<LOG1>) {
                                            my $phone='18072722237';
    					#2016-03-09 09:35:12,380 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为132435,本验证码5分钟内有效。 to phoneNo:18072722237 succeed!
    								 
    					if ( ($phone) and ($_ =~/$phone/) and ($_ =~/SMSUtils/) ){$str=$_;
    					
    					my $d=encode_utf8('验证');
    				#	my $d='验证';
                                            
    					print "1-------$str is $str
    ";
    					next if ($str !~ /$d/);
    					print "2--------$str is $str
    ";
    					push (@arr1 ,$str);
    					}};
    					
    					close LOG1;
              $c->render(text =>  "测试更健康" );
    };
    				   
    
    
      app->start;
      
      
      [root@wx03 ~]# morbo test.pl 
    Server available at http://127.0.0.1:3000
    [Thu Jun 30 19:52:38 2016] [debug] GET "/admin/api/menu"
    [Thu Jun 30 19:52:38 2016] [debug] Routing to a callback
    Wide character in print at /root/test.pl line 11.
    测试更健康
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    2--------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的813231,本30分钟内有效。 to phoneNo:18072722237 succeed!
    
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的813231,本30分钟内有效。 to phoneNo:18072722237 succeed!
    
    [Thu Jun 30 19:52:38 2016] [debug] 200 OK (0.001048s, 954.198/s)
    
    
    
    /************ 关闭utf-8
    
    [root@wx03 ~]# cat test.pl 
    use Mojolicious::Lite;
    use JSON qw/encode_json decode_json/;  
    use Encode;
    no strict;
    use JSON; 
    use Data::Dumper;
    no  utf8;
    # /foo?user=sri
     get '/admin/api/menu' => sub {
              my $c = shift;
              print "测试更健康
    ";
             open (LOG1 ,"<",'/data01/applog_backup/zj-api01-catalina.out') or die  $!;
                         while (<LOG1>) {
                                            my $phone='18072722237';
    					#2016-03-09 09:35:12,380 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为132435,本验证码5分钟内有效。 to phoneNo:18072722237 succeed!
    								 
    					if ( ($phone) and ($_ =~/$phone/) and ($_ =~/SMSUtils/) ){$str=$_;
    					
    			 #		my $d=encode_utf8('验证');
    					my $d='验证';
                                            
    					print "1-------$str is $str
    ";
    					next if ($str !~ /$d/);
    					print "2--------$str is $str
    ";
    					push (@arr1 ,$str);
    					}};
    					
    					close LOG1;
              $c->render(text =>  "测试更健康" );
    };
    				   
    
    
      app->start;
      
      
      
      接口返回;
      
      
      [root@wx03 ~]# morbo test.pl 
    Server available at http://127.0.0.1:3000
    [Thu Jun 30 19:55:09 2016] [debug] GET "/admin/api/menu"
    [Thu Jun 30 19:55:09 2016] [debug] Routing to a callback
    测试更健康
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    2--------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的验证码为813231,本验证码30分钟内有效。 to phoneNo:18072722237 succeed!
    
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的813231,本30分钟内有效。 to phoneNo:18072722237 succeed!
    
    1-------$str is 2016-04-22 11:02:01,259 INFO com.zjzc.thirdparty.sms.SMSUtils - Send message:您的813231,本30分钟内有效。 to phoneNo:18072722237 succeed!
    
    [Thu Jun 30 19:55:09 2016] [debug] 200 OK (0.001001s, 999.001/s)
    
      

  • 相关阅读:
    谬论之程序猿的眼光看世界
    phpStudy-坑爹的数据库管理器-phpMyAdmin的默认用户名和密码
    解决Delphi 2010启动时出现cannot create xxxxEditorLineEnds.ttr问题
    数据库中增加操作insert into的用法和查询select的用法
    TRichEdit怎样新增的内容到最后一行?
    BCB将RichEdit光标移到最后一行
    怎么把焦点放在RichEdit的最后一行
    Panel自动变颜色
    怎么判断pagecontrol下的TabSheet是否打开还是关闭求答案
    用Setup Factory7.0怎样打包delphi的BDE?
  • 原文地址:https://www.cnblogs.com/zhaoyangjian724/p/6199751.html
Copyright © 2011-2022 走看看