工作中需要观察数据的变化趋势,用python写了一段小程序来用显示简单图表,分享出来方便有同样需求的人,matplotlib是个很不错的库。#!encode=utf8from matplotlib import pyplot as pltimport sysignore_num=(int)(sys....
分类:
编程语言 时间:
2015-11-10 20:56:59
阅读次数:
320
HTML 部分文件名:test.html 1 2 3 服务器部分jsonp.php 1 '登录成功');13 }else{14 $data = array('msg'=>'用户名或密码错误');15 }16 $json = json_encode($data);17 //返回jsonp的...
分类:
Web程序 时间:
2015-11-09 17:11:26
阅读次数:
195
QuestionDesign an algorithm to encodea list of stringstoa string. The encoded string is then sent over the network and is decoded back to the original...
分类:
Web程序 时间:
2015-11-09 07:09:24
阅读次数:
359
use Encode; use LWP::UserAgent; use HTTP::Cookies;; $cookie_jar = HTTP::Cookies->new( file=>‘d:\tmp\1.cookie‘, autosave=>1 ); my $url = ‘http://137.0.10.21:1407/aniam/resDeviceSD/toResDeviceSrch?de...
分类:
其他好文 时间:
2015-11-07 16:13:36
阅读次数:
195
乱码原因:源码文件的编码格式为utf-8,但是window的本地默认编码是gbk,所以在控制台直接打印utf-8的字符串当然是乱码了!解决方法:1、print mystr.decode('utf-8').encode('gbk')2、比较通用的方法:复制代码代码如下:import systype =...
分类:
编程语言 时间:
2015-11-06 14:42:54
阅读次数:
159
今天主要讲解了常用的int、float、str、list、tuple、set类的常用方法。已经encode(编码)和decode(解码)的区别。如上图所示,无论操作系统本身的字符集是什么样式的。在他们互相通信的时候都要将字符集转换成Unicode这种万国码。这样他们的之间的沟通就不存在障碍了。例如..
分类:
编程语言 时间:
2015-11-03 00:48:00
阅读次数:
253
json_encode($json_str,true)在一般情况下可以返回一个数组,但当$json_str的字符编码是GBK或其它时,返回的是一个空数组,必须用iconv(‘gbk’,‘ut8//IGNORE’,$json_str)转换编码才行。说明string iconv ( string $in...
分类:
Web程序 时间:
2015-11-01 01:38:22
阅读次数:
765
转载处:http://stackoverflow.com/questions/22952994/mongo-so-undefined-symbol-php-json-encode-in-unknown-on-line-0-after-instal
分类:
Web程序 时间:
2015-10-29 18:05:55
阅读次数:
175
今天写php curl模拟客户端访问测试一个抽奖post数据,拿回来的数据是json,使用json_decode函数就是没结果,百度谷歌好久。终于发现是BOM的文件头造成的,微软为utf-8文件添加了三个字在文件头部,需要过滤掉才能被decode。$result = trim($result, "\...
分类:
Web程序 时间:
2015-10-28 17:03:45
阅读次数:
169
1.response.php $code, 'message' => $message, 'data' => $data ); echo json_encode($result); exit; }}2.test.php1, 'name' => 'shazhuang');Response...
分类:
Web程序 时间:
2015-10-28 01:14:29
阅读次数:
220