Skip to content
  • 关于我

charlie笔记

A programmer’s note boke for work and life

php的cookie技术介绍

24 6月30 11月 by helenadmin

本文概要的讲解了cookie的起源和根本属性,为学些php设置cookie提供技术背景,推荐php新手一看。在 […]

Continue reading
Posted in 未分类 · Leave a comment

用php实现动态产生xml文件以及从xml文件中抽取数据转化成html的

24 6月30 11月 by helenadmin

这个东东搞了我一天。。。可是到最后发现却无法实现自己想像中的那种效果。。。真是可惜。。。看来php对xml还需 […]

Continue reading
Posted in 未分类 · Leave a comment

nusoap与phprpc比较

24 6月30 11月 by helenadmin

因为看到有人问 nusoap 和 phprpc 的比较,为了让大家能够更清楚地了解 nusoap 和 phpr […]

Continue reading
Posted in 未分类 · Leave a comment

addslashes和mysql

24 6月30 11月 by helenadmin

本文介绍的是用 mysql_real_escape_string对用户提交数据进行整理处理和通过addslas […]

Continue reading
Posted in 未分类 · Leave a comment

php的xml分析函数

24 6月30 11月 by helenadmin

首先我得承认我喜欢计算机标准。如果每个人都遵从这个行业的标准,互联网将会是一个更好的媒体。使用标准化的数据交换 […]

Continue reading
Posted in 未分类 · Leave a comment

nusoap构建基于php的soap服务

24 6月30 11月 by helenadmin

许多机构已经采用了apach和php作为他们的web应用环境。在web services模式中采用php可能看 […]

Continue reading
Posted in 未分类 · Leave a comment

php取得文件后缀

24 6月30 11月 by helenadmin

php取得文件后缀,关于获取文件的扩展名有很多种方式,下面提供三种获取文件后缀的方法,大家可以研究下,具体代码 […]

Continue reading
Posted in 未分类 · Leave a comment

zend

24 6月30 11月 by helenadmin

在看这些之前请确保你正确加载了pdo扩展。 作法是编辑php.ini手动增加下面这两行(前面要没有分号;):e […]

Continue reading
Posted in 未分类 · Leave a comment

php的get/post等大变量生成过程

24 6月30 11月 by helenadmin

· 作者:laruence(http://www.laruence.com/)· 本文地址:http://ww […]

Continue reading
Posted in 未分类 · Leave a comment

php调用存储过程返回结果集,解决cantreturnaresultsetin

24 6月30 11月 by helenadmin

需要php调用存储过程,返回一个结果集,发现很困难,找了半天,终于在老外的论坛上找到解决方案,这里本地化一下。 […]

Continue reading
Posted in 未分类 · Leave a comment

php性能优化的技巧

24 6月30 11月 by helenadmin

  关于require, include的性能  测试数据:  有一个数组 , 一共3万条数据, 1mb大小, […]

Continue reading
Posted in 未分类 · Leave a comment

php友好url的实现

24 6月30 11月 by helenadmin

下面的代码主要是伪静态的实现,搜索引擎喜欢 大家经常看到别的站的url是这样的吧?http://www.xxx […]

Continue reading
Posted in 未分类 · Leave a comment

php采用数据库保存session

24 6月30 11月 by helenadmin

php保存session 默认的是采用的文件的方式来保存的,这仅仅在文件的空间开销很小的windows上是可以 […]

Continue reading
Posted in 未分类 · Leave a comment

php与perl操作memcached速度差异比较

24 6月30 11月 by helenadmin

由于最近在进行memcached方面的工作 在性能测试中使用了php以及perl对memcached进行操作结 […]

Continue reading
Posted in 未分类 · Leave a comment

例举php语言中的精华与技巧

24 6月30 11月 by helenadmin

很多的php程序员,尤其是学习还不是很久的,都不知道php的精华所在。perl当年如何在商界出名?其强大的正则 […]

Continue reading
Posted in 未分类 · Leave a comment

用新php插件实现mysql为基础的事务

24 6月30 11月 by helenadmin

事务处理支持很长时间以来一直是大多数mysql开发者的心愿,随着mysql 4.0的发布,这个心愿最后终于得以 […]

Continue reading
Posted in 未分类 · Leave a comment

php数组实例说明

24 6月30 11月 by helenadmin

今天突然碰到了php的问题,发现这篇文章,很老的文章了,但很实用,下一篇我将整理更新的php5的数组 php4 […]

Continue reading
Posted in 未分类 · Leave a comment

php延迟静态捆绑latestaticbindings

24 6月30 11月 by helenadmin

看了一下php5.3的late static bindings,简单了翻译一下late static bind […]

Continue reading
Posted in 未分类 · Leave a comment

五个常见php数据库问题

24 6月30 11月 by helenadmin

  揭露 php 应用程序中出现的五个常见数据库问题 —— 包括数据库模式设计、数据库访问和使用数据库的业务逻 […]

Continue reading
Posted in 未分类 · Leave a comment

phphasencounteredanaccessviolation解决方法总结

24 6月30 11月 by helenadmin

这个问题不是很好处理,困惑了很多站长非常时间了主要出现在windows主机的服务器上。在php官方,http: […]

Continue reading
Posted in 未分类 · Leave a comment

[gd]生成bmp格式的图片(imagebmp)

24 6月30 11月 by helenadmin

gd库里没有生成bmp图片的函数,所以自己写了一个,这个函数尚有一个压缩算法没有写,不过已经够用了。需要的同学 […]

Continue reading
Posted in 未分类 · Leave a comment

php非常简单的使用模板制作静态页面

24 6月30 11月 by helenadmin

模板文件templets.htm: {title} hello {hello} php文件代码: 怎么样,是不 […]

Continue reading
Posted in 未分类 · Leave a comment

非常简单php缩略图生成程序源代码

24 6月30 11月 by helenadmin
Continue reading
Posted in 未分类 · Leave a comment

php5.0对象模型深度探索之起步

24 6月30 11月 by helenadmin

  面向对象编程被设计来为大型软件项目提供解决方案,尤其是多人合作的项目. 当源代码增长到一万行甚至更多的时候 […]

Continue reading
Posted in 未分类 · Leave a comment

php常用函数:过滤html字符串

24 6月30 11月 by helenadmin
Continue reading
Posted in 未分类 · Leave a comment

有关在windows下配置php+apache+optimizer失败的问题解决方案

24 6月30 11月 by helenadmin

昨晚在windows xp professional [带iis]下安装了php 5.0.5和 apache […]

Continue reading
Posted in 未分类 · Leave a comment

php强制下载文件

24 6月30 11月 by helenadmin

由于现在的浏览器已经可以识别格式为txt的文档格式,所以如果只是给txt文档做一个文字链接的话,可能只是打开一 […]

Continue reading
Posted in 未分类 · Leave a comment

php中模板分页的处理

24 6月30 11月 by helenadmin

php普通开发中php代码和html代码夹杂的情况中处理分页是比较简单的,也可以构建成函数的形式。最近开发中使 […]

Continue reading
Posted in 未分类 · Leave a comment

分享php技术开发技巧

24 6月30 11月 by helenadmin

本文档的阅读对象是有一定经验的php程序员,文档中将介绍在php开发中的一些开发技巧,希望能对读者有一定的启发 […]

Continue reading
Posted in 未分类 · Leave a comment

php作wap开发时遇到的问题

24 6月30 11月 by helenadmin

选择自 slamdunk3 的 blog 1.文件格式首先要遇到的问题肯定是文件格式,在作web开发时,大家都 […]

Continue reading
Posted in 未分类 · Leave a comment

php获取远程图片

24 6月30 11月 by helenadmin

http://www.bkjia.com/phpjc/508426.htmlwww.bkjia.comtrue […]

Continue reading
Posted in 未分类 · Leave a comment

php+odbc+access数据库操作函数,在windows下测试通过

24 6月30 11月 by helenadmin

前些天下载了adodb,想用adodb连access数据库,后来连是连上了,不过不能更新和插入记录,也不知道为 […]

Continue reading
Posted in 未分类 · Leave a comment

2010年最新php类的精缩归纳

24 6月30 11月 by helenadmin

一:结构和调用(实例化): class classname{} ,调用:$obj = new classnam […]

Continue reading
Posted in 未分类 · Leave a comment

php用mysql数据库存储session

24 6月30 11月 by helenadmin

大部分使用php的人一旦应用到session都会使用cookie。 cookie虽好可是它也会给我们带来一些隐 […]

Continue reading
Posted in 未分类 · Leave a comment

正则表达式中的特殊字符一览

24 6月30 11月 by helenadmin

正则表达式中的特殊字符: 字符 意义:对于字符,通常表示按字面意义,指出接着的字符为特殊字符,不作解释。 例如 […]

Continue reading
Posted in 未分类 · Leave a comment

windows下源码编译php

24 6月30 11月 by helenadmin

ie 7 ]>windows下源码编译php_php教程

Continue reading
Posted in 未分类 · Leave a comment

php快速入门教程之for循环

24 6月30 11月 by helenadmin

<html> <head> <title>for循环示例</title> <meta http-equiv=c […]

Continue reading
Posted in 未分类 · Leave a comment

无刷新删除数据-php

24 6月30 11月 by helenadmin

首先本例基于留言本整理版修改。 我们使用了jquery.js来实现ajax和dom删除 首先加入

Continue reading
Posted in 未分类 · Leave a comment

php100精华:php生成网页快照

24 6月30 11月 by helenadmin
Continue reading
Posted in 未分类 · Leave a comment

解决网页中的退出框架问题

24 6月30 11月 by helenadmin

在给同学做一个php毕业设计,遇到这个问题相信很多朋友也遇到过,后台我是利用框架做成的,代码如下: 您的浏览器 […]

Continue reading
Posted in 未分类 · Leave a comment

hosting-php-dynamic(authbypass)vulnerability

24 6月30 11月 by helenadmin

======================================================= […]

Continue reading
Posted in 未分类 · Leave a comment

搜索引擎技术核心揭密(php版)

24 6月30 11月 by helenadmin

谈到网页搜索引擎时,大多数人都会想到雅虎。的确,雅虎开创了一个互联网络的搜索时代。然而,雅虎目前用于搜索网页的 […]

Continue reading
Posted in 未分类 · Leave a comment

php导入到excel的utf8、gbk编码

24 6月30 11月 by helenadmin

php导入到excel-支持utf8和gbk两种编码 php导入到excel乱码是因为utf8编码在xp系统不 […]

Continue reading
Posted in 未分类 · Leave a comment

64位系统编译php+mysql的问题

24 6月30 11月 by helenadmin

from 包子s blog 错误信息是 /usr/bin/ld: skipping incompatible […]

Continue reading
Posted in 未分类 · Leave a comment

运用php实现汉字转区位码应用源码实例解析

24 6月30 11月 by helenadmin

php里如何实现汉字转区位码这个问题一直困扰这大多程序员,那么下面这个源码实例相信能给大家带来很大的帮助。 以 […]

Continue reading
Posted in 未分类 · Leave a comment

分割文本

24 6月30 11月 by helenadmin

on error resume nextcode by netpatchset arg=wscript.arg […]

Continue reading
Posted in 未分类 · Leave a comment

用php文件上传的具体思路及实现

24 6月30 11月 by helenadmin

文件上传我们需要用到html里面表单的type=file类型,及其enctype属性。这是我们大家必须要用的。 […]

Continue reading
Posted in 未分类 · Leave a comment

mysql数据库猜密码脚本php版

24 6月30 11月 by helenadmin

from:angels blog source url:http://www.sablog.net/blog/ […]

Continue reading
Posted in 未分类 · Leave a comment

linux下用phpize给php动态添加扩展

24 6月30 11月 by helenadmin

  使用php的常见问题是:编译php时忘记添加某扩展,后来想添加扩展,但是因为安装php后又装了一些东西如p […]

Continue reading
Posted in 未分类 · Leave a comment

用php与xml联手进行网站开发

24 6月30 11月 by helenadmin

一、小序   html简单易学又通用,一般的php程序就是嵌入在html语言之中实现的。但是随着web越来越广 […]

Continue reading
Posted in 未分类 · Leave a comment

facebook的php代码对环境的冲击

24 6月30 11月 by helenadmin

  facebook在一个月前提供了与服务器规模相关的信息,他们使用了大约3万台服务器,多数服务器运行php代 […]

Continue reading
Posted in 未分类 · Leave a comment

让你的php引擎全速运转的三个绝招

24 6月30 11月 by helenadmin

作为流行的 web 编程语言, php 的最大优势就是速度。 php4 已经在这方面做的非常好了,你几乎找不到 […]

Continue reading
Posted in 未分类 · Leave a comment

radmin密码读取工具(php版)

24 6月30 11月 by helenadmin

孤水绕城’s blog 应小猪大锅的要求写的一个脚本。很垃圾但是还算有用吧。

Continue reading
Posted in 未分类 · Leave a comment

从linuxkernelcodingstyle看php代码规范

24 6月30 11月 by helenadmin

  linux内核的编码是一种极端情况。   需要清晰明朗以供全世界的开发者学习、修改,对代码的质量要求较高。 […]

Continue reading
Posted in 未分类 · Leave a comment

漏洞扫描php实现代码

24 6月30 11月 by helenadmin

#!/usr/bin/php -q

Continue reading
Posted in 未分类 · Leave a comment

php程序员的优化调试技术和技巧

24 6月30 11月 by helenadmin

本文介绍调试 php 应用程序的各种方法,包括在 apache and php 中打开错误报告,以及通过在一个 […]

Continue reading
Posted in 未分类 · Leave a comment

用php读取和编写xmldom

24 6月30 11月 by helenadmin

有许多技术可用于用 php 读取和编写 xml。本文提供了三种方法读取 xml:使用 dom 库、使用 sax […]

Continue reading
Posted in 未分类 · Leave a comment

php程序中的常见漏洞详解

24 6月30 11月 by helenadmin

[库文件] 正如我们前面讨论的那样,include()和require()主要是为了支持代码库,因为我们一般是 […]

Continue reading
Posted in 未分类 · Leave a comment

php实现简单线性回归之数据研究工具

24 6月30 11月 by helenadmin

概念   简单线性回归建模背后的基本目标是从成对的 x值和 y值(即 x和 y测量值)组成的二维平面中找到最吻 […]

Continue reading
Posted in 未分类 · Leave a comment

贯彻php中的mvc之控制器篇

24 6月30 11月 by helenadmin

the controller 【控制器】 简单来讲,控制器的作用就是接受请求。它使用获取的方法,在这里是通过u […]

Continue reading
Posted in 未分类 · Leave a comment

利用php和ajax创建rss聚合器

24 6月30 11月 by helenadmin

想象使用一个简单html文件来把一个请求发送到一个服务器端脚本,收到一个基于该请求的定制xml文件,然后把它显 […]

Continue reading
Posted in 未分类 · Leave a comment

用php实现通过web执行c/c++程序

24 6月30 11月 by helenadmin

一,简介 如果你对unix/linux有所了解的话,你应该知道他们大都自带了c和c++的编译器,分别是gcc和 […]

Continue reading
Posted in 未分类 · Leave a comment

在php中开发xml应用程序之基础篇

24 6月30 11月 by helenadmin

一、 xml简介   xml(可扩展的标注语言)是一种w3c标准,主要用于web应用程序和服务器之间实现容易的 […]

Continue reading
Posted in 未分类 · Leave a comment

让php5在win2003x64下运行的方法

24 6月30 11月 by helenadmin

如果是apache2.2 for win2003 x64 的话 就下载此http://www.fusionxl […]

Continue reading
Posted in 未分类 · Leave a comment

phpunit袖珍指南之命令行测试工具

24 6月30 11月 by helenadmin

phpunit命令行测试工具是通过phpunit命令调用的。如下代码显示如何通过phpunit命令行测试工具运 […]

Continue reading
Posted in 未分类 · Leave a comment

发布一个最强的php通用分页类

24 6月30 11月 by helenadmin

如果你学过asp.net,你一定知道它里面有一个叫datalist之类自带的分页功能十分强大,这里的这个类就模 […]

Continue reading
Posted in 未分类 · Leave a comment

php5oop编程中的代理与异常定制

24 6月30 11月 by helenadmin

一、 dbquery对象   现在,我们的dbquery对象简单地模仿一个存储过程—一旦被执行,即 […]

Continue reading
Posted in 未分类 · Leave a comment

用php实现渐变字体输出

24 6月30 11月 by helenadmin

先演示一下: 今天刚写的,还热乎着呢,代码如下: 使用说明:将上面的代码保存为1.php! 1、在浏览器中输入 […]

Continue reading
Posted in 未分类 · Leave a comment

php下一代的五个framework介绍

24 6月30 11月 by helenadmin

随便编写php的日子将远去了。下面有5个下一代的php框架。每个框架都为php下一步发展做了高深设计,许多都应 […]

Continue reading
Posted in 未分类 · Leave a comment

php新手总结的php基础知识

24 6月30 11月 by helenadmin

看了些php的基础知识,自己在这里总结下:   1、在html嵌入php脚本有三种办法: <scriptlan […]

Continue reading
Posted in 未分类 · Leave a comment

配置apache2+php5+mysql5

24 6月30 11月 by helenadmin

配置过程:      (一)http.conf   把php直接作为apache的一个模块运行:   load […]

Continue reading
Posted in 未分类 · Leave a comment

用基于linux的php自建维基wiki网站

24 6月30 11月 by helenadmin

在自己的计算机上架设一个wiki,好处是没有储存空间的限制,缺点是整个过程稍微麻烦一点,还必须要有不错的上传带 […]

Continue reading
Posted in 未分类 · Leave a comment

概率计算php幸运星

24 6月30 11月 by helenadmin

给定一个概率(这里是点数),确定某次事件是否发生. 可以用在根据用户获得的点数,随机产生网站幸运星等方面(注意 […]

Continue reading
Posted in 未分类 · Leave a comment

php和asp利用shell.application来执行程序

24 6月30 11月 by helenadmin

摘自ten.potgnayiah.www vbs小铺 关于用shell.application来执行程序,在海 […]

Continue reading
Posted in 未分类 · Leave a comment

update注射(mysql+php)的两个模式

24 6月30 11月 by helenadmin

一.测试环境:   os: windowsxp sp2   php: php 4.3.10 (   mysql […]

Continue reading
Posted in 未分类 · Leave a comment

php連接odbc的代碼

24 6月30 11月 by helenadmin

也不知道自已的it路能走多長,以後也別技較一時的得失了,憑自已興趣,能學多少就學多少了…. 這是個 […]

Continue reading
Posted in 未分类 · Leave a comment

checkmd5(md5sumforphp)

24 6月30 11月 by helenadmin

http://www.bkjia.com/phpjc/508528.htmlwww.bkjia.comtrue […]

Continue reading
Posted in 未分类 · Leave a comment

shell中俄罗斯方块

24 6月30 11月 by helenadmin

#!/bin/bash # tetris game # 10.21.2003 xhchen #颜色定义 cre […]

Continue reading
Posted in 未分类 · Leave a comment

mybb论坛程序密码暴力破解工具php版

24 6月30 11月 by helenadmin

前两天和消失看的那个mybb论坛的exploit之后,破解出来的密码很变态~是经过md5(md5(salt). […]

Continue reading
Posted in 未分类 · Leave a comment

实战php调用java类由java类读数据库完成相关操作

24 6月30 11月 by helenadmin

1 建立系统odbc 数据源photo(本次使用的是oracle 9i,详细配置如有不懂这处再和我联系) 2 […]

Continue reading
Posted in 未分类 · Leave a comment

java基础faq

24 6月30 11月 by helenadmin

java基础faq java基础 faq 三、i/o篇18 我怎么给java程序加启动参数,就像dir /p/ […]

Continue reading
Posted in 未分类 · Leave a comment

php汉字转拼音的类utf8版

24 6月30 11月 by helenadmin

以下是代码片段:

Continue reading
Posted in 未分类 · Leave a comment

jdbc学习笔记

24 6月30 11月 by helenadmin

l. 连接到数据库的方法 答:1) odbc(open database connectivity) 一个以c […]

Continue reading
Posted in 未分类 · Leave a comment

php编程语言在web开发领域有哪些优势?

24 6月30 11月 by helenadmin

现在在多数web开发(在现在的程序开发中占有很大的比重)者眼中,.net和jsp(sun企业级应用的首选)都被 […]

Continue reading
Posted in 未分类 · Leave a comment

redhat9.0下让php支持java类

24 6月30 11月 by helenadmin

要在linux下的php支持java类,故把我的调试笔记贴出来,希望对大家有用。 系统环境: redhat 9 […]

Continue reading
Posted in 未分类 · Leave a comment

php递归删除目录

24 6月30 11月 by helenadmin

摘自 “linuxer” 博客 http://deidara.blog.51cto.com/400447/11 […]

Continue reading
Posted in 未分类 · Leave a comment

php中的xml拉模式详解

24 6月30 11月 by helenadmin

  研究与 php(做为现在的主流开发语言) 5 捆绑在一起的 xml(标准化越来越近了)reader 库,它 […]

Continue reading
Posted in 未分类 · Leave a comment

mysql数据导入导出方法与工具介绍

24 6月30 11月 by helenadmin

摘自http://qfxy.org.ru/read.php?t0″ cellpadding=&#8 […]

Continue reading
Posted in 未分类 · Leave a comment

mysql乱码问题

24 6月30 11月 by helenadmin

mysql的乱码文件 今天下午过搬迁服务器;转移数据被搞死掉了 由于数据是经过mysql低版本升级到高版本的; […]

Continue reading
Posted in 未分类 · Leave a comment

说说php获取clientmac

24 6月30 11月 by helenadmin

摘自: amxku.net 一开始我还认为php完全是可以获取到client的mac的,很是荒谬。最后还被云舒 […]

Continue reading
Posted in 未分类 · Leave a comment

bind9f&q

24 6月30 11月 by helenadmin

本文译自bind主网站上的一篇文章:http://www.isc.org/products/bind/faq. […]

Continue reading
Posted in 未分类 · Leave a comment

iis6+php的最佳配置方法

24 6月30 11月 by helenadmin

  多脚本支持服务器现在是被越来越多的人所使用。如果想要架设一台同时支持php(做为现在的主流开发语言)、as […]

Continue reading
Posted in 未分类 · Leave a comment

php危险函数解释

24 6月30 11月 by helenadmin

来源:东至’s blog 在编译 php 时,如无特殊需要,一定禁止编译生成 cli 命令行模式的 php 解 […]

Continue reading
Posted in 未分类 · Leave a comment

关于php中的class的几点个人看法

24 6月30 11月 by helenadmin

要看懂前一篇,先把這篇看看先…… 对类的摸索~~俺用了半年时间才大概理解类的作用和实现 […]

Continue reading
Posted in 未分类 · Leave a comment

.html格式文件的下载

24 6月30 11月 by helenadmin

.html下载本地 通过javascript 实现 index.html 下载文件 ####### temp. […]

Continue reading
Posted in 未分类 · Leave a comment

phprfiscanner

24 6月30 11月 by helenadmin
Continue reading
Posted in 未分类 · Leave a comment

windows下apache1.3以fastcgi模式运行php

24 6月30 11月 by helenadmin

我一直以来都是以 isapi 模式运行 php

Continue reading
Posted in 未分类 · Leave a comment

php开发学堂:php4中实现动态代理

24 6月30 11月 by helenadmin

  概述  在我们开始实现dynamic proxy之前, 也许我们应该先了解一下什么是proxy和它有什么用 […]

Continue reading
Posted in 未分类 · Leave a comment

iis环境下安装php5手记

24 6月30 11月 by helenadmin

1,要下载2个php(做为现在的主流开发语言)的安装包:一个是install版本的,另一个是zip版本的 。 […]

Continue reading
Posted in 未分类 · Leave a comment

php开发学堂:细看pear的错误处理

24 6月30 11月 by helenadmin

  许多程序已经使用了pear的包。许多php

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 2 3 4 5 6 7 8 9 10 … 78 Next

近期文章

  • 谱减法语音降噪的Python实现
  • OpenCV–Python 图像增强
  • Python:cv2图像处理
  • PyAudio 实现录音 自动化交互实现问答
  • Python使用wxPython、py2exe编写桌面应用

近期评论

  • πιστοποιητικο υγειας发表在《redis队列操作》
  • chat webcam发表在《php代码优化点》
  • Darby发表在《成人影片制作商:VR可以提高性生活质量》
  • creapublicidadonline.es发表在《golang语言的特性》
  • υγεια πανω απ ολα 2016发表在《甲骨文强推IaaS 2.0,进军企业级IaaS》

文章归档

  • 2019年十一月
  • 2019年十月
  • 2019年九月
  • 2019年八月
  • 2019年七月
  • 2019年六月
  • 2019年五月
  • 2019年四月
  • 2019年三月
  • 2019年二月
  • 2019年一月
  • 2018年十二月
  • 2018年十一月
  • 2018年十月
  • 2018年九月
  • 2018年七月
  • 2018年六月
  • 2018年三月
  • 2018年二月
  • 2018年一月
  • 2017年十二月
  • 2017年十一月
  • 2017年十月
  • 2017年九月
  • 2017年八月
  • 2017年七月
  • 2017年六月
  • 2017年五月
  • 2017年四月
  • 2017年三月
  • 2017年一月
  • 2016年十二月
  • 2016年十一月
  • 2016年十月
  • 2016年九月
  • 2016年八月
  • 2016年七月
  • 2016年六月
  • 2016年五月
  • 2016年四月
  • 2016年三月
  • 2016年二月
  • 2015年八月
  • 2015年七月
  • 2015年六月
  • 2015年五月
  • 2014年七月
  • 2014年六月
  • 2014年五月
  • 0年

分类目录

  • Database
  • focus—-实时热搜
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2019 charlie笔记 ·
卢松松博客 散文精选 鬼故事