zf

18.scrapy_maitian_analysis

混江龙づ霸主 提交于 2020-02-02 05:07:52
1_info.py # encoding: utf-8 import pandas as pd # 租房 基本信息 # 读取文件 df=dataframe df = pd.read_json("zufang.json") # print(df) # print(df.columns) # 使用pandas的describe方法,打印基本信息 print(df.describe()) # 按照区,分别统计个数 print(df["district"].value_counts()) # print('**************************') # # 二手房 基本信息 df = pd.read_json("ershoufang.json") print(df.describe()) # 分别统计个数 print(df["district"].value_counts()) 2_pie_chart.py # coding:utf-8 import numpy as np import pandas as pd import json import matplotlib as mpl import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties from pylab

set_magic_quotes_runtime()和get_magic_quotes_runtime()

假装没事ソ 提交于 2019-12-24 00:47:39
set_magic_quotes_runtime()和get_magic_quotes_runtime() 是针对数据库 get_magic_quotes_gpc() 是针对GPC, Get/Post/Cookie 来自http://www.5iphp.com/zh-hans/content/325.html 来自http://hi.baidu.com/samyucn/blog/item/df14cb3590a03c46251f14da.html 1、PHP中set_magic_quotes_runtime()函数的作用: 此函数来修改PHP.ini文件中的 magic_quotes_runtime 变量的状态,如果想获得magic_quotes_runtime 变量的状态用get_magic_quotes_runtime这个函数如果返回0表示本功能被关闭,如果返回1表示本功能已经开启。 magic_quotes_runtime的功能是当它被开启的时候所有外部引入的数据库资料或者文件等等都会自动转为含有反斜线溢出字符的资料。比如: 用户向数据库提交的数据中含有\" '这些符号的时候它就会在这些符号的前面自动加上"\"转义符。 这个属性在PHP4以前的版本都是默认关闭的,PHP4.0以后的版本如果程序要用到将它关闭的时候直接写成set_magic_quotes_runtime(0

Uncaught RangeError: Maximum call stack size exceeded Google maps when I try to set bounds

匿名 (未验证) 提交于 2019-12-03 01:06:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I created a working google map that I am now trying to have auto zoom out so all the points fit. When I added: var bounds = new google.maps.LatLngBounds(); and bounds.extend(point); map.fitBounds(bounds); I then get this error: Uncaught RangeError: Maximum call stack size exceeded J.get (anonymous function) Ey.(anonymous function).zoomRange_changed Zf J.set (anonymous function) Ey.(anonymous function).zoomRange_changed Zf J.set (anonymous function) Ey.(anonymous function).zoomRange_changed Zf J.set (anonymous function) Ey.(anonymous function

PHP只允许用户在一处登陆思路

匿名 (未验证) 提交于 2019-12-02 22:11:45
只允许用户在一处登陆,因为用户的uid是唯一的 数据表 zf_user_login id uid session_id ctime status 登陆时保存 zf_user_login,然后查询该ID在数据库中是否有登陆的记录,如果有,改为否 用户的公共方法中,通过uid实时判断该session_id是否有效 来源:博客园 作者: Eric-枫 链接:https://www.cnblogs.com/wmc1125/p/11431947.html

zendframework2学习笔记之安装篇

旧街凉风 提交于 2019-12-01 19:48:58
最近研究了下 zendframework2 感觉很惊艳 打算把自己的学习笔记整理下 首先下载zf2 http://framework.zend.com/downloads/latest 我本地是winxp +xampp 设置好php的环境变量后 在apache的conf文件内 建立一个虚拟主机目录 供zf网站使用 在hosts内建立一个域名指向zf网站 贴下我的conf配置文件 和hosts文件 注:本地使用了路由器 ip:192.168.1.35是本地内网ip <VirtualHost 192.168.1.35:80> ServerName zf2.swh.com DocumentRoot "F:/zendframework/zf/public" SetEnv APPLICATION_ENV "development" <Directory "F:/zendframework/zf/public"> DirectoryIndex index.php AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost> 在win系统内 修改hosts 192.168.1.35 zf2.swh.com 处理完这些后 然后我们在 下载: git clone https://github.com

[LC]21题 Merge Two Sorted Lists (合并两个有序链表)(链表)

点点圈 提交于 2019-11-30 13:47:12
①英文题目 Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Example: Input: 1->2->4, 1->3->4 Output: 1->1->2->3->4->4 ②中文题目 将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 输入:1->2->4, 1->3->4 输出:1->1->2->3->4->4 ③思路 就是判断大小,注意,比着比着,l1或者l2就会空掉,然后导致空指针的问题,进而报错。 ④代码 1 class Solution { 2 public ListNode mergeTwoLists(ListNode l1, ListNode l2) { 3 ListNode zf=null; 4 // ListNode curr=zf; 5 ListNode temp1=l1; 6 ListNode temp2=l2; 7 if(temp1==null&&temp2!=null){ 8 zf=temp2; 9 temp2=temp2.next; 10 } 11 if(temp1!