Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

php使用正则表达式

20 6月01 1月 by helenadmin

正则表达式在所有编程语言中都是比较重要的知识,php也提供了正则表达式可以通过正则来进行字符串查找和替换,基本 […]

Continue reading
Posted in 未分类 · Leave a comment

php中apc缓存使用示例

20 6月01 1月 by helenadmin

记的以前php文件上传到服务器时需要先用zend guard加密下,有了apc就不用了。 从维基百科上看到的消 […]

Continue reading
Posted in 未分类 · Leave a comment

浅谈php变量作用域以及地址引用问题

20 6月01 1月 by helenadmin

作用域的概念: 在php脚本的任何位置都可以声明变量,但是,声明变量的位置会大大影响访问变量的范围。这个可以访 […]

Continue reading
Posted in 未分类 · Leave a comment

php递归获取目录内文件(包含子目录)封装类分享

20 6月01 1月 by helenadmin

代码如下: 代码如下: function readfilefromdir($dir) { if (!is_di […]

Continue reading
Posted in 未分类 · Leave a comment

生成随机字符串和验证码的类的php实例

20 6月01 1月 by helenadmin

网上有很多的php随机数与验证码的代码与文章,真正适用的没有几个。 索性自己搞一个吧。 开始本节的php教程 […]

Continue reading
Posted in 未分类 · Leave a comment

输入值/表单提交参数过滤有效防止sql注入的方法

20 6月01 1月 by helenadmin

输入值/表单提交参数过滤,防止sql注入或非法攻击的方法: 代码如下: /** * 过滤sql与php文件操作 […]

Continue reading
Posted in 未分类 · Leave a comment

php下载excel无法打开的解决方法

20 6月01 1月 by helenadmin

php下载excel文件,1、在下载的过程中不要 输出任何非文件信息,比如 echo log信息。 否则下载后 […]

Continue reading
Posted in 未分类 · Leave a comment

zendframework文件上传功能实例代码

20 6月01 1月 by helenadmin

代码如下: //实例化上传类$upload = new zend_file_transfer();//设置过滤 […]

Continue reading
Posted in 未分类 · Leave a comment

phpcalender(日历)二个版本代码示例(解决2038问题)

20 6月01 1月 by helenadmin
Continue reading
Posted in 未分类 · Leave a comment

php文字水印和php图片水印实现代码(二种加水印方法)

20 6月01 1月 by helenadmin

文字水印 文字水印就是在图片上加上文字,主要使用gd库的imagefttext方法,并且需要字体文件。效果图如 […]

Continue reading
Posted in 未分类 · Leave a comment

discuz免激活同步登入代码修改方法(discuz同步登录)

20 6月01 1月 by helenadmin

代码如下: //打开discuz/api/uc.php//synlogin方法(180行)处,往下找到if(( […]

Continue reading
Posted in 未分类 · Leave a comment

使用gd库实现php服务端图片裁剪和生成缩略图功能分享

20 6月01 1月 by helenadmin

裁剪示例: 其中虚线框内就是要裁剪出来的图片,最终保存成100宽的图片。代码如下: 代码如下: $src_pa […]

Continue reading
Posted in 未分类 · Leave a comment

phpexcel导入excel数据使用方法实例

20 6月01 1月 by helenadmin

将excel文件数据进行读取,并且返回错误的信息 代码如下: /** * 导入商品基本信息 */ public […]

Continue reading
Posted in 未分类 · Leave a comment

php生成缩略图填充白边(等比缩略图方案)

20 6月01 1月 by helenadmin

网站上传图片后生成缩略图应该是非常常用的功能了,通常来讲为了网站显示美观,缩略图会是同样尺寸,比如最近笔者做的 […]

Continue reading
Posted in 未分类 · Leave a comment

php生成excel列序号代码实例

20 6月01 1月 by helenadmin

代码如下: public function loop(){ $loop = 0; $charnum = 65; […]

Continue reading
Posted in 未分类 · Leave a comment

php使用filter过滤器验证邮箱ipv6地址url验证

20 6月01 1月 by helenadmin

1、验证邮箱 代码如下: $email = ‘jb51@qq.com’;$result […]

Continue reading
Posted in 未分类 · Leave a comment

phpjquery多文件上传简单实例

20 6月01 1月 by helenadmin

代码如下: upload 《script》 $(document).ready(function() { va […]

Continue reading
Posted in 未分类 · Leave a comment

php使用strtotime和date函数判断日期是否有效代码分享

20 6月01 1月 by helenadmin

咋一想,判断日期是否有效应该是蛮简单的一个功能,但是细想起来还是有点麻烦的,因为既要检验格式,又要检验有效性。 […]

Continue reading
Posted in 未分类 · Leave a comment

php安装xdebug/php安装pear/phpunit详解步骤(图)

20 6月01 1月 by helenadmin

首先,本文是基于wamp环境的基础上的,所以,如果您看到这里还没有搭建好wamp环境的话,介意您先把环境搭建好 […]

Continue reading
Posted in 未分类 · Leave a comment

php制作unicode解码工具(unicode编码转换器)代码分享

20 6月01 1月 by helenadmin

代码如下:

Continue reading
Posted in 未分类 · Leave a comment

php变量的定义、可变变量、变量引用、销毁方法

20 6月01 1月 by helenadmin

代码如下: 05 $short is php rocks!06 long is php rocks!09 $s […]

Continue reading
Posted in 未分类 · Leave a comment

linux实现php定时执行cron任务详解

20 6月01 1月 by helenadmin

对于php本身并没有一套解决方案来执行定时任务,不过是借助sleep函数完成的。这种方就是要提前做一些配置,如 […]

Continue reading
Posted in 未分类 · Leave a comment

部署php项目应该注意的几点事项分享

20 6月01 1月 by helenadmin

在部署php项目时,有几点需要特别注意,也是初学者比较容易忽视的点: 一、下载wampserver后,如何安装 […]

Continue reading
Posted in 未分类 · Leave a comment

php函数指定默认值方法的小例子

20 6月01 1月 by helenadmin

本节内容:php函数指定默认值在php编程中,为自定义函数设定默认值,当用户调用该函数时,如果不给参数指定值, […]

Continue reading
Posted in 未分类 · Leave a comment

php对二维数组进行排序的简单实例

20 6月01 1月 by helenadmin

本文介绍下,php中使用array_multisort函数进行二维数组排序的例子,有需要的朋友,参考下吧。继上 […]

Continue reading
Posted in 未分类 · Leave a comment

php获取301跳转url简单实例

20 6月01 1月 by helenadmin

代码如下: /** * get_redirect_url() * gets the address that […]

Continue reading
Posted in 未分类 · Leave a comment

php函数microtime()用法与说明

20 6月01 1月 by helenadmin

定义和用法php函数microtime()返回当前 unix 时间戳和微秒数。php函数microtime() […]

Continue reading
Posted in 未分类 · Leave a comment

thinkphp的curd和查询方式介绍

20 6月01 1月 by helenadmin

对数据的读取 read 代码如下: $m=new model(‘user’); $m= […]

Continue reading
Posted in 未分类 · Leave a comment

php获取mac地址的具体实例

20 6月01 1月 by helenadmin

本节分享的php代码,主要功能:获取机器网卡的物理(mac)地址。代码: 代码如下: http://www.b […]

Continue reading
Posted in 未分类 · Leave a comment

php实现memcache缓存示例讲解

20 6月01 1月 by helenadmin

概述 共享内存是一种在相同机器中的应用程序之间交换数据的有效方式。一个进程可创建一个可供其他进程访问的内存段, […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 38 39 40 41 42 43 44 45 46 47 48 … 260 Next

近期文章

  • 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网