Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

php中eval()的小技巧

20 6月01 1月 by helenadmin

eval()函数是php中一个大家都希望禁止的函数,eval()函数非常的危险哦,下面我来给大家介绍php中e […]

Continue reading
Posted in 未分类 · Leave a comment

php中根据生日判断星座、生肖程序代码

20 6月01 1月 by helenadmin

星座判断很简单我们要统计出每个星期所有日期时间段了,然后获取日期进行查询即可了,下面我给大家举两个实例,有需要 […]

Continue reading
Posted in 未分类 · Leave a comment

php如何返回json格式的数据给jquery

20 6月01 1月 by helenadmin

json格式的数据是我们在应用开发中一直会使用到的数据,如与jquery打交到或与api打交都会使用到json […]

Continue reading
Posted in 未分类 · Leave a comment

php类和对象之protected与const属性

20 6月01 1月 by helenadmin

本文章给大家介绍在php中类和对象的protected与const属性用法,有需要了解的朋友可参考参考。 co […]

Continue reading
Posted in 未分类 · Leave a comment

javascrip全选效果之学习笔记

20 6月01 1月 by helenadmin

我要做的效果就是当我们打开页面时就自动把所有checkbox选中,原理是:先获取所有type为\’ […]

Continue reading
Posted in 未分类 · Leave a comment

php文件上传代码用法详解

20 6月01 1月 by helenadmin

本文章是一篇适合于php入门者的文章告诉大如何编辑php文件上传代码,在编辑前我们需要了解几点,有及files […]

Continue reading
Posted in 未分类 · Leave a comment

php设计模式之工厂模式学习笔记

20 6月01 1月 by helenadmin

本文章来给大家介绍php5中的一个新东西,就是工厂模式了,这里是我常用工厂模式的一些学习笔记,下面与大家一同分 […]

Continue reading
Posted in 未分类 · Leave a comment

php学习笔记之php变量用法

20 6月01 1月 by helenadmin

变量是php编程中必不可少的一种东西了,在php中变量为分全局变量与私有变量,下面来分享我对php变量的一些了 […]

Continue reading
Posted in 未分类 · Leave a comment

php全局变量之global关键字引用解读

20 6月01 1月 by helenadmin

本文章来给大家简单的介绍一下关于php 全局变量 global关键字引用介绍,虽说评论跟文章相比,及其的简短, […]

Continue reading
Posted in 未分类 · Leave a comment

php函数详解之学习笔记

20 6月01 1月 by helenadmin

在php中函数是常用的一种合理的可以重复使用的方法,函数分别系统函数与用户自定义函数,下面我来给大家介绍这两种 […]

Continue reading
Posted in 未分类 · Leave a comment

php中header自定义404状态错误页面

20 6月01 1月 by helenadmin

404页面就是一个告诉搜索引擎这个页面不存在了,同时也提示用户可以选择其它的操作了,下面我来给没有apache […]

Continue reading
Posted in 未分类 · Leave a comment

phpcookie之学习笔记

20 6月01 1月 by helenadmin

cookie是所有程序中都会用到的一个会话,下边我把我学习php cookie 的笔记分享给各位同学,本文章介 […]

Continue reading
Posted in 未分类 · Leave a comment

php判断一个字符串是否是回文字符串

20 6月01 1月 by helenadmin

本文章给大家介绍一个实例,用来判断字符串是不是为回文字符串,有需要了解的朋友可参考参考。 代码如下 http: […]

Continue reading
Posted in 未分类 · Leave a comment

phpsession

20 6月01 1月 by helenadmin

本文章来给大家介绍php session_encode()和 session_decode() 用法,有需要了 […]

Continue reading
Posted in 未分类 · Leave a comment

addslashes,mysql

20 6月01 1月 by helenadmin

本文章来给大家简单介绍关于在php中addslashes() ,mysql_real_escape_strin […]

Continue reading
Posted in 未分类 · Leave a comment

php中运算符使用方法总结

20 6月01 1月 by helenadmin

算术运算符 1、算术运算符:+、-、*、/、%。 2、递增/递减运算符:如$a++,$a–,++$ […]

Continue reading
Posted in 未分类 · Leave a comment

php查找字符串学习笔记

20 6月01 1月 by helenadmin

本文章介绍了在php中查找字符串一些方法,包括有:查找字符串、查找字符串出现次数、查找字符串位置三种关于字符串 […]

Continue reading
Posted in 未分类 · Leave a comment

php布尔型数据类型falsetrue用法介绍

20 6月01 1月 by helenadmin

在php中false true是真与假的意思,在php中叫做布尔型数据类型,他是我们常见的一种数据类型,如条件 […]

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

修饰符是php中正则表达式的一个重要的参考,下面我来给大家转一篇关于php中正则表达式模式修饰符详解,有需要了 […]

Continue reading
Posted in 未分类 · Leave a comment

phpunlink函数删除一个文件程序代码

20 6月01 1月 by helenadmin

在php中我们要删除一个指定的文件我们可以使用unlink函数来实现,下面我给大家详细介绍unlink函数删除 […]

Continue reading
Posted in 未分类 · Leave a comment

php遍历数组listforeacheach方法总结

20 6月01 1月 by helenadmin

在php中可以用来遍历数组的函数有很多,如有:for语句、list、each、foreach这四个函数,这也是 […]

Continue reading
Posted in 未分类 · Leave a comment

php获取刚刚插入数据的id值

20 6月01 1月 by helenadmin

本文章来给大家介绍php获取刚刚插入数据的id值方法,php提供了mysql_insert_id()函数我们只 […]

Continue reading
Posted in 未分类 · Leave a comment

php类和对象之公共属性与私有属性

20 6月01 1月 by helenadmin

本文章给大家简单的举例说明在php类和对象之公共属性与私有属性用法,有需要了解的朋友可参考。 私有属性 定义了 […]

Continue reading
Posted in 未分类 · Leave a comment

phpifelseswicth条件控制语句学习笔记

20 6月01 1月 by helenadmin

在php中条件控制语句使用最多的就是if else或switch语句了,下面我来给大家详细介绍我在学习php中 […]

Continue reading
Posted in 未分类 · Leave a comment

php中forwhile循环语句学习笔记

20 6月01 1月 by helenadmin

本文章来给大家介绍php中基本的循环语句的使用方法,包括for循环,while循环与do while循环的使用 […]

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

小编今天来给php初学者介绍php文件操作的常用函数使用方法总结,包括:文件读写,创建,查看文件属性,文件删除 […]

Continue reading
Posted in 未分类 · Leave a comment

php登录与退出登录实例代码

20 6月01 1月 by helenadmin

这里我们pm_user是数据表没有创建表,大家可以自己行创建了,下面只介绍利用php登录然后再退出登录的程序代 […]

Continue reading
Posted in 未分类 · Leave a comment

php目录操作函数总结

20 6月01 1月 by helenadmin

本文章给大家总结了php目录操作一些函数与使用方法包括有:创建目录、遍历目录、读取目录、关闭目录、打开目录等等 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 52 53 54 55 56 57 58 59 60 61 62 … 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网