$_SERVER['PHP_SELF']#当前正在执行脚本的文件名,与documentroot相关。$_SERVER['argv']#传递给该脚本的参数。$_SERVER['argc']#包含传递给程序的命令行参数的个数(如果运行在命令行模式)。$_SERVER['GATEWAY_INTERFACE...
分类:
Web程序 时间:
2014-10-21 00:59:15
阅读次数:
223
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2014-10-20 20:59:42
阅读次数:
275
一面1.算法题目atoi实现2. singleton 和 observer 设计模型observer 中的subscriber和unsubscribe 在多线程下的异常安全性问题(这个不是很清楚)3. 僵尸进程父进程未处理子进程的退出状态,导致占用系统资源(进程号)http://www.cnblog...
分类:
移动开发 时间:
2014-10-19 10:09:13
阅读次数:
230
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2014-10-19 06:53:03
阅读次数:
181
这是两道经常考到的笔试题,看似简单的实现,其实专注到细节,还是有很多需要注意扣分的地方。atoi实现: 1 #include 2 #include 3 using namespace std; 4 5 typedef enum status{ 6 OK,ERROR 7 }Status...
分类:
其他好文 时间:
2014-10-17 23:19:52
阅读次数:
281
#include#include#includeint main(void){ char a[1000]; scanf("%s",a); printf("%s->",a); for(;;) { int len=strlen(a); int i,j,old=atoi(a); for(i=0;ia[j....
分类:
其他好文 时间:
2014-10-16 09:09:32
阅读次数:
151
前面已经讲到,变量名只能包含数字、字母和下划线,因为某些包含其他字符的变量有特殊含义,这样的变量被称为特殊变量。例如,$ 表示当前Shell进程的ID,即pid,看下面的代码: $echo $$ 特殊变量列表 变量 含义 $0 当前脚本的文件名 $n ...
分类:
系统相关 时间:
2014-10-14 08:58:27
阅读次数:
244
npm获取配置有6种方式,优先级由高到底。命令行参数。--proxy http://server:port即将proxy的值设为http://server:port。环境变量。 以npm_config_为前缀的环境变量将会被认为是npm的配置属性。如设置proxy可以加入这样的环境变量npm_con...
分类:
其他好文 时间:
2014-10-13 23:12:17
阅读次数:
645
Problem:Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see be...
分类:
其他好文 时间:
2014-10-13 01:47:48
阅读次数:
187
sys模块 提供一些与python解释器关系紧密的变量和函数 1> argv 命令行参数 通过命令行可以向python传输参数 2> exit([arg]) 程序退出,可以返回给命令行一个错误参数或返回值 ## test.py ## imp...
分类:
编程语言 时间:
2014-10-12 21:45:58
阅读次数:
264