码迷,mamicode.com
首页 >  
搜索关键字:notice    ( 1174个结果
线上nginx_cache服务器nginx.conf文件详解
#使用的用户和组userwwwwww;#指定工作衍生进程数(一般等于cpu的总核数或总核数的两倍,例如两个四核cpu,则总核数为8)worker_processes4;#指定错误日志存放的路径,错误日志记录级别可选项为:[debug|info|notice|warn|error|crit]error_log/usr/local/nginx/logs/nginx_error...
分类:系统相关   时间:2017-05-19 22:27:55    阅读次数:297
org.apache.commons.lang.exception包的ExceptionUtils工具类获取getFullStackTrace
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this ... ...
分类:Web程序   时间:2017-05-17 19:14:13    阅读次数:291
LeetCode 114. Flatten Binary Tree to Linked List
原题 Given a binary tree, flatten it to a linked list in-place. For example,Given The flattened tree should look like: Hints: If you notice carefully in ...
分类:其他好文   时间:2017-05-17 17:26:45    阅读次数:117
五十个小技巧提高PHP执行效率(一)
在项目开发过程中,经常遇到了一些PHP处理程序性能底下的情况,程序运行在centos+nginx环境,虽然这个有很多的原因如:服务器本身配置,运行环境nginx服务,php-fpm配置等等,更多有一点仍然是PHPer没有对程序进行更好的优化。 第一类、变量类型: 1)主要是使用未定义变量,而直接使用 ...
分类:Web程序   时间:2017-05-17 12:10:51    阅读次数:205
Lesson 2 Building your first web page: Part 2
Tag Diagram You may have noticed that HTML tags come in pairs; HTML has both an opening tag (<tag name>) and a closing tag (</tag name>). The only dif ...
分类:Web程序   时间:2017-05-16 21:35:13    阅读次数:245
error_reporting函数引起的error_log配置失效的问题
由于项目代码中大量使用了error_reporting(0);导致php.ini中的error_log失效,不记录错误日志, 导致调试起来非常不便,耗费大量的时间,所以在php.ini的配置中禁止掉error_reporting 函数! nginx是一个web服务器,因此nginx的access日志 ...
分类:其他好文   时间:2017-05-15 00:40:43    阅读次数:262
php中出现Strict Standards: Only variables should be passed by reference in的解决方法
今天在练习一个小demo的时候,在localhost文件中出现了这样的notice,具体的原因和解决方法做如下分析。 题目:已知一个字符串如下,将其最后两项转换为数组。 主要的思路:1. 先使用explode()函数将字符串进行分割,因该函数的结果会返回一个数组,所以分割的部分会独立的存入该数组中。 ...
分类:Web程序   时间:2017-05-13 19:01:14    阅读次数:257
常量指针与指针常量
/* Module: 常量指针与指针常量.cpp Notices: Copyright (c) 2017/5/11 Landy */ #include using namespace std; int main() { int a = 100, b = 200; // 常量指针 const int ... ...
分类:其他好文   时间:2017-05-12 00:09:27    阅读次数:146
css
今天学习了很多的知识,理解和记忆的东西都很多。昨天老师布置了一个作业,回来用css做一个网页,现在不用表格做网页了,现在用css。知识点今天不整理了,都整理在笔记本和电脑上了,从回来就开始写作业,写了好久。下面是自己练习的东西,做一下记录: opacity:0.5; 透明度border-radius ...
分类:Web程序   时间:2017-05-11 19:42:36    阅读次数:181
php实用小技巧【持续更新】
这是本人开始做项目的时候遇到过的问题还有解决方法 1.eval函数 能把字符串转换成可执行的php代码,如果字符串不是可执行的php代码的话,需要在前面加上@,屏蔽notice 2.array_merge函数 array_merge函数是用来合并数组的,本人之前遇到过一个需求 把arr_1在arr_ ...
分类:Web程序   时间:2017-05-11 11:48:29    阅读次数:214
1174条   上一页 1 ... 53 54 55 56 57 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!