Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

月份:2017年6月

php生成验证码实例代码

24 6月01 1月 by helenadmin

下面是生成验证码代码,结果编程之家本站测试过,没错误贴上来的。如果有什么不懂的地方可以回复,编程之家会为你解释 […]

Continue reading
Posted in 未分类 · Leave a comment

php编码错误不显示错误信息提示解决方法

24 6月01 1月 by helenadmin

使用php apache编程,在缺省设置下,php编码错误是不会提示的,这对于开发来说,是很不方便的。可以使用 […]

Continue reading
Posted in 未分类 · Leave a comment

讲解php创建memcached客户端缓存

24 6月01 1月 by helenadmin

emcached 是一个键值存储系统,它将关键数据存储在内存中,大大减少存取数据的时间。使用memcached […]

Continue reading
Posted in 未分类 · Leave a comment

php实现在线端口扫描实例代码

24 6月01 1月 by helenadmin

php实现端口在线检测

Continue reading
Posted in 未分类 · Leave a comment

详细介绍memcached是什么?

24 6月01 1月 by helenadmin

memcached是什么 在阐述这个问题之前,我们首先要清楚它“不是什么”。很多人把它当作和sharedmem […]

Continue reading
Posted in 未分类 · Leave a comment

省份城市菜单联动,ajax3级菜单联动

24 6月01 1月 by helenadmin

首先看jq的扩展如下: //city selected jquery.fn.cityselect = func […]

Continue reading
Posted in 未分类 · Leave a comment

php5中的访问控制!public,private,protected

24 6月01 1月 by helenadmin

php5 oop中类的变量定义遵循一种访问控制,就是: public 表示全局,类内部外部子类都可以访问; p […]

Continue reading
Posted in 未分类 · Leave a comment

php获取客户端ip地址的几种方法

24 6月01 1月 by helenadmin

$iipp=$_server[“remote_addr”];echo $iipp;?> […]

Continue reading
Posted in 未分类 · Leave a comment

毛毛虫教你写一个属于自己的模板引擎

24 6月01 1月 by helenadmin

#phpchina首发# smarty一直被人视为是多余的东西,我觉得认为smarty多余的人才是多余的&#8 […]

Continue reading
Posted in 未分类 · Leave a comment

phpextendedchm中文手册

24 6月01 1月 by helenadmin

推荐 强力推荐的哈 php.net上用户对于函数的注释都有 我滴饿大神啊,早咋没有让我发现这好东西呢使用方法: […]

Continue reading
Posted in 未分类 · Leave a comment

php中的sprintf()函数的学习研究笔记

24 6月01 1月 by helenadmin

sprintf 将字串格式化。 语法: string sprintf(string format, mixed […]

Continue reading
Posted in 未分类 · Leave a comment

php程序开发的原则汇总

24 6月01 1月 by helenadmin

你不必严格遵守这些原则,违背它们也不会被处以宗教刑罚。但你应当把这些原则看成警铃,若违背了其中的一条,那么警铃 […]

Continue reading
Posted in 未分类 · Leave a comment

使用php中的日期和时间函数

24 6月01 1月 by helenadmin

(1)date 用法: date(格式,[时间]); 如果没有时间参数,则使用当前时间. 格式是一个字符串,其 […]

Continue reading
Posted in 未分类 · Leave a comment

在php上使用fork以及socket的sample

24 6月01 1月 by helenadmin

linux server上,但是我又想從外部使用vnc連到內部的一台windows電腦。所以就寫了這個程式原理 […]

Continue reading
Posted in 未分类 · Leave a comment

php身份验证方面的函数

24 6月01 1月 by helenadmin

写了几个身份证方面的函数,个人感觉挺有用的,特别是在网络问卷调查时,对个人信息里的身份证进行验证很有用,但是应 […]

Continue reading
Posted in 未分类 · Leave a comment

通过实例深入剖析require和include的用法

24 6月01 1月 by helenadmin

在php中,include和require的作用比较容易混淆。下面我以一个经典例子来深刻说明它们的区别。 当我 […]

Continue reading
Posted in 未分类 · Leave a comment

使用apc最优化php

24 6月01 1月 by helenadmin

php也许是在linux开发者中最受欢迎的网站构建语言,同时也是在其它平台程序员中可利用的语言。php是全面支 […]

Continue reading
Posted in 未分类 · Leave a comment

说说php作图(一)

24 6月01 1月 by helenadmin

实在不敢说是在这里“讲”gd库,因为我用gd也才一两次而已,绝大多数的函数还没有接触到。可是三斑竹小刁热情地向 […]

Continue reading
Posted in 未分类 · Leave a comment

php创建(中/英文字)图片

24 6月01 1月 by helenadmin

这个php代码是我做的一个程序的一部分,现在贴出来分享一下。这个代码的功能是创建一个图片,不但可以用自定义字体 […]

Continue reading
Posted in 未分类 · Leave a comment

使用apc缓存优化php程序

24 6月01 1月 by helenadmin

alternative php cache(apc)是 php 的一个免费公开的优化代码缓存。它用来提供免费, […]

Continue reading
Posted in 未分类 · Leave a comment

php设置cookie保留时间为浏览器进程

24 6月01 1月 by helenadmin

例如: 以下为引用的内容: 你会发现这个语句执行过后,cookie里什么也没有,到下一个页面就显示没有$use […]

Continue reading
Posted in 未分类 · Leave a comment

phpxref使用指南

24 6月01 1月 by helenadmin

phpxref是一个十分优秀的php开发工具,它能将某一个程序(如wordpress)中所有的函数、变量、常量 […]

Continue reading
Posted in 未分类 · Leave a comment

setcookie语句的问题

24 6月01 1月 by helenadmin

出现的错误提示: warning: cannot modify header information &#82 […]

Continue reading
Posted in 未分类 · Leave a comment

单件模式结合命令链模式

24 6月01 1月 by helenadmin

初学者对于设计模式肯定存在着很多不明白之处,今天刚好周末,就抽出来点时间写了一个单件模式结合命令链模式打造系统 […]

Continue reading
Posted in 未分类 · Leave a comment

实现php的编译执行分离(separatingcompilationandexecution

24 6月01 1月 by helenadmin

刚刚在php群内和大家聊天,应承了大家要写一个关于如何实现php源码加密的文章,借着这会qa在冒烟的机会,就这 […]

Continue reading
Posted in 未分类 · Leave a comment

基于db2及php的应用系统跨平台迁移详细步骤(二)

24 6月01 1月 by helenadmin

5.处理数据库表中的自增字段 对于需要加载的含有自增字段的表,即该表的 ixf 数据文件中有自增列的值, 可以 […]

Continue reading
Posted in 未分类 · Leave a comment

php中常用的函数库和一些小技巧

24 6月01 1月 by helenadmin

文件读取函式 //文件读取函式 function php_read($file_name) { $fd=fop […]

Continue reading
Posted in 未分类 · Leave a comment

php清除网页病毒的方法

24 6月01 1月 by helenadmin

好像是进行一些替换操作,大家可以测试

Continue reading
Posted in 未分类 · Leave a comment

php采集程序大全

24 6月01 1月 by helenadmin

在论坛好久了没有怎么正式的发表过东西,今天给大家共享一下我的采集代码! 思路:   采集程序的思路很简单大体可 […]

Continue reading
Posted in 未分类 · Leave a comment

foreach、while、for性能比较

24 6月01 1月 by helenadmin

一般情况下,遍历一个数组有三种方法,for、while、foreach。其中最简单方便的是foreach。那么 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

先前文章

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

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

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2025 charlie笔记 ·