Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

php上传图片学习笔记与心得

20 6月01 1月 by helenadmin

我们在php中上传文件就必须使用#_file变量了,这个自动全局变量 $_files 从 php 4.1.0 […]

Continue reading
Posted in 未分类 · Leave a comment

phpheader函数下载文件实现代码

20 6月01 1月 by helenadmin

在php中header函数的使用很大,header不但可以向客户端发送原始的 http 报头信息,同时还可以直 […]

Continue reading
Posted in 未分类 · Leave a comment

php中session实现保存用户登录信息

20 6月01 1月 by helenadmin

session在php中是一个非常重要的东西,像我们用户登录一般都使用到session这个东西,相对于cook […]

Continue reading
Posted in 未分类 · Leave a comment

php删除数组元素方法总结

20 6月01 1月 by helenadmin

在php开发时我们经常会碰到要删除数组中指定指定内容,但数组是特殊变量我们不能直接利用replace进行替换的 […]

Continue reading
Posted in 未分类 · Leave a comment

php判断变量为空详解介绍

20 6月01 1月 by helenadmin

在php中判断变量为空我们有很多种方法,php为我们提供了empty,isset,var == null,is […]

Continue reading
Posted in 未分类 · Leave a comment

php时间戳与日期之间转换

20 6月01 1月 by helenadmin

在php中如果要实现日期转换成时间戳我们可以直接使用strtotime函数,如果把时间戳转换成日期直接使用da […]

Continue reading
Posted in 未分类 · Leave a comment

php判断变量类型程序代码详解

20 6月01 1月 by helenadmin

在php中检查变量类型的方法很简单,利用gettype()函数就可返回当前变量类型的了,下面我来给各位朋友详细 […]

Continue reading
Posted in 未分类 · Leave a comment

php提示notice:undefinedindex错误解决办法

20 6月01 1月 by helenadmin

这种问题是你php中把错误提示开启了之后,会把你编程的一些错误给告诉你,下面我来给大家分析php notice […]

Continue reading
Posted in 未分类 · Leave a comment

php判断变量常量是否存在

20 6月01 1月 by helenadmin

在php中变量类型我们有常用变量与常量,下面我来给大家介绍如何在php中来判断常量与变量是否己经在存了,有需要 […]

Continue reading
Posted in 未分类 · Leave a comment

php中::、->、self、$this操作符

20 6月01 1月 by helenadmin

在访问php类中的成员变量或方法时,如果被引用的变量或者方法被声明成const(定义常量)或者static(声 […]

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留言板制作教程

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

phpurlencode和rawurlencode的区别介绍

20 6月01 1月 by helenadmin

在php中rawurlencode与rawurlencode都是对字符进行编码的,下面我来给大家介绍urlen […]

Continue reading
Posted in 未分类 · Leave a comment

php判断字符串为空函数介绍

20 6月01 1月 by helenadmin

在php中判断字符串为空的方法有很多种方法,像等于空 == null,empty,isset都可以用来判断一个 […]

Continue reading
Posted in 未分类 · Leave a comment

phpmyadmin安装与配置使用方法

20 6月01 1月 by helenadmin

phpmyadmin是一个不错的mysql数据库管理web版的软件,只需要简单的配置一下就可以使用了,下面我来 […]

Continue reading
Posted in 未分类 · Leave a comment

php中array

20 6月01 1月 by helenadmin

一个利用php中array_unique实现去除二级数组重复值的方法,有需要的朋友可参考参考。 代码如下

Continue reading
Posted in 未分类 · Leave a comment

php字符比较strcmp()函数使用方法

20 6月01 1月 by helenadmin

strcmp()函数的使用是比较两个字符串,如果两个字符串完全相等我们就返回0,否则就会有各种返回值,此函数并 […]

Continue reading
Posted in 未分类 · Leave a comment

php中sprintf函数用法详细

20 6月01 1月 by helenadmin

以前听老师讲过sprintf()函数需要使用echo方 法才可以讲格式化后的字符串显示输出,下面我来看一下简单 […]

Continue reading
Posted in 未分类 · Leave a comment

phpsprintf()函数使用方法详解

20 6月01 1月 by helenadmin

我们知道sprintf() 函数把格式化的字符串写写入一个变量中,我们经常会看到这类代码了,下面我来介绍spr […]

Continue reading
Posted in 未分类 · Leave a comment

php5类中的属性与类方法

20 6月01 1月 by helenadmin

本文章详细的介绍一下关于php5类中的属性与类方法,有需要学习的朋友可参考消息。 php5类方法 过程:过程是 […]

Continue reading
Posted in 未分类 · Leave a comment

php中array

20 6月01 1月 by helenadmin

合并数据在php中我们利用array_merge()函数来实现,array_merge() 函数把两个或多个数 […]

Continue reading
Posted in 未分类 · Leave a comment

phpset

20 6月01 1月 by helenadmin

set_time_limit函数可以临时定义你当前页面的执行时间,set_time_limit(0)时页面就永 […]

Continue reading
Posted in 未分类 · Leave a comment

php中全局变量global详解

20 6月01 1月 by helenadmin

本文章来详细的介绍关于php中全局变量global的方法,有需要了解global函数使用方法的朋友可参考本文章 […]

Continue reading
Posted in 未分类 · Leave a comment

php面试题之访问控制

20 6月01 1月 by helenadmin

对属性或方法的访问控制,是通过在前面添加关键字 public、protected 或 private 来实现的 […]

Continue reading
Posted in 未分类 · Leave a comment

php中strtotime给个时间返回该时间所在的星期一

20 6月01 1月 by helenadmin

一个简单的php中strtotime给个时间返回该时间所在的星期一实现代码,有需要的朋友可参考。 strtot […]

Continue reading
Posted in 未分类 · Leave a comment

php分割字符串并循环输出

20 6月01 1月 by helenadmin

一个简单的php分割字符串并循环输出 学习笔记本大家可参考参考。 例子一 代码如下 输出: 0.4723471 […]

Continue reading
Posted in 未分类 · Leave a comment

php中stripslashes与addslashes用法区别

20 6月01 1月 by helenadmin

在php中我们常会使用到stripslashes与addslashes了, 下面我来详细的介绍stripsla […]

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中我们常用的运算符包括有算数运算符、赋值运算符、比较运算符、逻辑运算符 等等下面我来给各位朋友介绍用法 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

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