PHP做验证码

5-18 4,038 views

点击下载字体文件 <?php //PHP验证码 class Code{ //图像资源 private $img; //宽度 private $width; //高度 private $height...
阅读全文 1

php面试题汇总~~

5-17 3,980 views

php面试题汇总(点我下载)
阅读全文 0

python开发_python关键字

5-15 3,219 views

python3.3.2中的关键字如下: The following identifiers are used as reserved words, or keywords of the language, and cannot be used as ordinary ident...
阅读全文 0

mysql 启动报错 /var/run/mysqld/mysqld.pid ended

5-14 5,156 views

mysql启动 提示 [root@localhost var]# Starting mysqld daemon with databases from /var/lib/mysql STOPPING server from pid file /var/run/mysqld/mysq...
阅读全文 0

Linux 下安装 python PIP

5-13 9,279 views

@1-> 命令行下运行 wget https://bootstrap.pypa.io/get-pip.py ,没有wget的请先去安装wget @2-> ~ python get-pip.py @3-> ~ pip -V ,出现...
阅读全文 0

Windows 下 python安装PIP

5-13 3,633 views

一 首先进入网址:https://packaging.python.org/tutorials/installing-packages/#installing-from-pypi @1–选择 get-pip @2–选择get-pip,...
阅读全文 0

python一些常用小函数,不定时更新~

5-12 3,066 views

首字母大写(map函数) #!/usr/bin/env python # -*- coding: utf-8 -*- def change(str): return {'a':'A','b':'B','c':'C','d':'D','e':'E','f':'F','g':...
阅读全文 0

python获取变量的数据类型

5-12 4,725 views

import types aaa = 0 print type(aaa) if type(aaa) is types.IntType: print "the type of aaa is int" if isinstance(aaa,int): pri...
阅读全文 1

python字符串转换成数字int的函数

5-12 3,863 views

#!/usr/bin/env python # -*- coding: utf-8 -*- def str2int(s): def fn(x,y): return x * 10 + y def char2num(s): return {'0':...
阅读全文 0

SSH 超时断开连接

5-12 4,440 views

修改/etc/ssh/sshd_config文件,找到 ClientAliveInterval 0和ClientAliveCountMax 3并将注释符号("#")去掉, 将ClientAliveInterval对应的0改成20, ClientA...
阅读全文 1