摘要:
PHP查看xml源码的方法 要通过查看源码才能看到xml源码 因为 print_r输出的时候 默认页面打开是html编码的。。。。。。 所以解析不了xml 阅读全文
摘要:
linux关闭正在运行在后台的程序 sh crontab &然后要关闭它 ps -ef | grep crontab.sh 第二列就是pid 然后kill -9 pid就可以了 阅读全文
摘要:
写完命令 sh运行命令错误 cat -A 查看下 后面是不是有 ^M$ 如果有那就是window上编辑器生成的 建议用vi新建文件 然后下载到本地用notepad++来写 阅读全文
摘要:
linux mv 不需要用递归-R cp需要递归-R 阅读全文
摘要:
linux删除mysql php apapche nginx的方法 <pre> #whereis php 这个要结合phpinfo 看加载哪个php.ini来决定php: /usr/bin/php /usr/local/php删除 /usr/local/php [root@iZ232j30a95Z 阅读全文
摘要:
win charles显示中文乱码解决终极方案 1 找到Charles.ini2 然后修改文件 加个vmarg.2=-Dfile.encoding=UTF-8 就可以了具体如下<pre>working.directory=.classpath.1=lib/charles.jarmain.class= 阅读全文
摘要:
php开发web服务原理 运行原理1 先启动进程2 启动进程了 端口自然也会开启3 端口自然也接受数据 并且能处理 这个是最简单的web服务器 开发简要socket 开启端口 并且接收数据 处理。。返回给客户端 阅读全文
摘要:
nginx反向代理代码做法打开nginx.conf 写入如下代码 就可了 <pre>location / {proxy_pass http://127.0.0.1:80;}</pre> 进入网址 都会跳转到http://127.0.0.1:80 这个地址 从而域名不会变 如果域名改成了其他地址 不是 阅读全文
摘要:
cc: Internal error: Killed (program cc1)Please submit a full bug report.See <http://bugzilla.redhat.com/bugzilla> for instructions.make: *** [ext/sqli 阅读全文
摘要:
类似于重置数组信息,这个可以使用php的一个内置函数array_values(); 例如:<pre><?php $a=array("a"=>"Cat","b"=>"Dog","c"=>"Horse"); print_r(array_values($a)); // 输出: // Array ( [0] 阅读全文