查看PHP配置文件所在位置虽然PHP是以httpd一个模块的形式存在的,但是PHP本身也有自己的配置文件。查看PHP配置文件所在位置的命令为:[root@zlinux~]#/usr/local/php/bin/php-i|grep-i"LoadedConfigurationfile"PHPWarning:Unknown:Itisnotsafetorelyonthesystem‘stimezones
分类:
Web程序 时间:
2018-03-11 21:10:48
阅读次数:
204
opiodr aborting process unknown ospid (4564) as a result of ORA-609
分类:
数据库 时间:
2018-03-09 20:34:05
阅读次数:
272
There is a new alien language which uses the latin alphabet. However, the order among letters are unknown to you. You receive a list of words from the ...
分类:
其他好文 时间:
2018-03-09 10:42:39
阅读次数:
296
请求这个controller,会负载均衡到不同的消费提供者微服务http://localhost:8764/hi?name=ye demo服务注册中心服务器 package com.example.demo; import org.springframework.boot.SpringApplica ...
分类:
编程语言 时间:
2018-03-08 20:21:03
阅读次数:
310
Question: Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 ...
分类:
其他好文 时间:
2018-03-08 19:36:48
阅读次数:
169
一、查看PHP配置文件所在位置虽然PHP是以httpd一个模块的形式存在的,但是PHP本身也有自己的配置文件。查看PHP配置文件所在位置的命令为:[root@zlinux~]#/usr/local/php/bin/php-i|grep-i"LoadedConfigurationfile"PHPWarning:Unknown:Itisnotsafetorelyonthesystem‘stimezon
分类:
Web程序 时间:
2018-03-07 17:01:17
阅读次数:
252
MySQL之单表查询 一、单表查询的语法 SELECT 字段1,字段2... FROM 表名 WHERE 条件 GROUP BY field HAVING 筛选 ORDER BY field LIMIT 限制条数 二、关键字的执行顺序 1.找到表:from 2.拿着where指定的约束条件,去文件/ ...
分类:
数据库 时间:
2018-03-05 20:38:06
阅读次数:
223
一、单表查询的语法 二、关键字的执行顺序 1.找到表:from 2.拿着where指定的约束条件,去文件/表中取出一条条记录 3.将取出的一条条记录进行分组group by,如果没有group by,则整体作为一组 4.将分组的结果进行having过滤 5.执行select 6.去重 7.将结果按条 ...
分类:
数据库 时间:
2018-03-05 17:03:01
阅读次数:
171
test = [6,1,2,3,4,5] a = sorted(test,reverse=True) print a 结果如下: [6, 5, 4, 3, 2, 1] 你可以参考下sorted,里面是可以接收reverse参数的 def sorted(iterable, cmp=None, key=... ...
分类:
编程语言 时间:
2018-03-03 16:50:51
阅读次数:
421