其实 eval()是无法用php.ini中的 disable_functions禁止掉的 :eval是zend的,因此不是PHP_FUNCTION 函数; 如果想禁掉eval可以用php的扩展 Suhosin: 安装Suhosin后在php.ini中load进来Suhosin.so,再加上 suho ...
分类:
Web程序 时间:
2019-02-17 10:39:23
阅读次数:
254
官方网址:https://docs.python.org/3/library/functions.html 简单演示几个 all(iterable) 所有元素都为真,返回True,否则返回False (非0,即为真。空为False) In [2]: all([1,2,3])Out[2]: True ...
分类:
编程语言 时间:
2019-02-16 16:51:30
阅读次数:
233
Introduction Introduction For this first programming assignment you will write three functions that are meant to interact with dataset that accompanie ...
分类:
其他好文 时间:
2019-02-09 20:53:53
阅读次数:
261
QMessageBox提供两套接口来实现,一种是static functions(静态方法调用),另外一种 the property-base API(基于属性的API) 效果图: ...
分类:
其他好文 时间:
2019-02-09 01:08:10
阅读次数:
164
Proxies allow you to use functions that haven't yet been defined on an object. This means that you can invoke a function then create that function if ...
分类:
编程语言 时间:
2019-02-07 19:07:57
阅读次数:
141
基础命令 压缩: 解压: 添加日志快捷键: 查看进程并结束: 服务器告警: rm回收站 # .bashrc # User specific aliases and functions alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # Sourc ...
分类:
系统相关 时间:
2019-01-31 22:53:55
阅读次数:
322
开放封闭原则(Open Close Principle,简称OCP)尽量通过扩展软件实体的行为来实现变化,而不是通过修改已有的代码来实现变化 原始定义:Software entities (classes, modules, functions) should be open for extensi ...
分类:
其他好文 时间:
2019-01-31 19:25:28
阅读次数:
156
查看php配置文件位置:/usr/local/php/bin/php-i|grep-i"loadedconfigurationfile"//这个有可能不准,找php.ini最准vim/usr/local/php5/etc/php.ini(需要在源码包文件中拷贝过来)1、date.timezone//用来定义时区2、disable_functions//限制安全函数eval,as
分类:
Web程序 时间:
2019-01-30 07:17:49
阅读次数:
206
stack: 执行 LIFO (Last in First out)操作。底层为 deque 来实现。 Member functions empty: size: top: push: pop: emplace(c++11): swap(c++11): ...
分类:
其他好文 时间:
2019-01-29 18:24:53
阅读次数:
135
http://docs.python.org/3/library/functions.html#abs # 求任意个参数最小值 min() # 求任意个参数最大值 max() # 将整数转换为十六进制 hex() # 类型转换 int() float() bool() str() # 求绝对值 ab ...
分类:
编程语言 时间:
2019-01-28 19:14:02
阅读次数:
160