Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

php实现图片缩放功能类

20 6月01 1月 by helenadmin

代码如下: http://www.bkjia.com/phpjc/621680.htmlwww.bkjia.c […]

Continue reading
Posted in 未分类 · Leave a comment

php配合jquery实现增删操作具体实例

20 6月01 1月 by helenadmin

后台使用php,前台引用jquery,实现增删操作,代码如下: 代码如下:

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

1.上传表单 upload.html 程序代码html 代码如下:    1.注意这是一个标签,我们要实现文件 […]

Continue reading
Posted in 未分类 · Leave a comment

php防止sql注入代码实例

20 6月01 1月 by helenadmin

放到公用调用文件(如conn数据库链接文件),对所有get或post的数据进行过滤特殊字符串,以实现简单有效的 […]

Continue reading
Posted in 未分类 · Leave a comment

php指定函数参数默认值示例代码

20 6月01 1月 by helenadmin

例1 代码如下: php函数指定默认值-www.jbxue.com 输出结果:this is test 例2 […]

Continue reading
Posted in 未分类 · Leave a comment

php读取csv实现csv文件下载功能

20 6月01 1月 by helenadmin

第一段是读文件,下载。第二段是字符串下载。 代码如下:

Continue reading
Posted in 未分类 · Leave a comment

php提取图片img标记中的任意属性的简单实例

20 6月01 1月 by helenadmin

代码如下:

Continue reading
Posted in 未分类 · Leave a comment

根据中文裁减字符串函数的php代码

20 6月01 1月 by helenadmin

代码如下: define(charset, ‘utf-8’); // 系统默认编码 / […]

Continue reading
Posted in 未分类 · Leave a comment

用php实现弹出消息提示框的两种方法

20 6月01 1月 by helenadmin

方法一: 代码如下: echo “《script》alert(‘提示内容’ […]

Continue reading
Posted in 未分类 · Leave a comment

phpeval函数使用介绍

20 6月01 1月 by helenadmin

代码: 代码如下: eval(“echo’hello world’;&#8 […]

Continue reading
Posted in 未分类 · Leave a comment

使用php检测用户当前使用的浏览器是否为ie浏览器

20 6月01 1月 by helenadmin

代码如下: /** * 检测用户当前浏览器 * @return boolean 是否ie浏览器 */ func […]

Continue reading
Posted in 未分类 · Leave a comment

sae使用smarty模板的方法

20 6月01 1月 by helenadmin

smarty是非常流行的模板系统,它分离了业务和逻辑、执行速度快,在php网站中有广泛的运用。 不过在部署到s […]

Continue reading
Posted in 未分类 · Leave a comment

server.htmlencode让代码在页面里显示为源代码

20 6月01 1月 by helenadmin

今天因为程序里面要把写入数据库的html源代码以html源编码的形式显示在页面里面,而不要被浏览器解释成。。找 […]

Continue reading
Posted in 未分类 · Leave a comment

php查找任何页面上的所有链接的方法

20 6月01 1月 by helenadmin

使用dom,你可以轻松从任何页面上抓取链接,代码示例如下: 代码如下: $html = file_get_co […]

Continue reading
Posted in 未分类 · Leave a comment

php自定义的格式化时间示例代码

20 6月01 1月 by helenadmin

如:时间刚好是5分钟前,则对应的时间戳就会被格式化为5分钟前,不多说了,直接贴上代码: 代码如下: /** * […]

Continue reading
Posted in 未分类 · Leave a comment

phpstrom使用xdebug配置方法

20 6月01 1月 by helenadmin

1 到 http://xdebug.org/download.php下载xdebug。注意找到自己对应的php […]

Continue reading
Posted in 未分类 · Leave a comment

php实现查看邮件是否已被阅读的方法

20 6月01 1月 by helenadmin

当你在发送邮件时,你或许很想知道该邮件是否被对方已阅读。这里有段非常有趣的代码片段能够显示对方ip地址记录阅读 […]

Continue reading
Posted in 未分类 · Leave a comment

php使用curl发送json格式数据实例

20 6月01 1月 by helenadmin

代码如下: $urlcon= ‘http://localhost/******.php&#8217 […]

Continue reading
Posted in 未分类 · Leave a comment

php模拟asp.netwebfrom按钮提交事件的思路及代码

20 6月01 1月 by helenadmin

由于公司需要php方面的项目开发,php刚刚入门,在写按钮提交过程中,asp.net里的按钮事件更好些。先看下 […]

Continue reading
Posted in 未分类 · Leave a comment

php中{}大括号是什么意思

20 6月01 1月 by helenadmin

1、 {} 表示程序块的开始和结束 例如 代码如下: if ($x==$y) {  do_nothing(); […]

Continue reading
Posted in 未分类 · Leave a comment

phpecho,print,printf,sprintf函数之间的区别与用法详解

20 6月01 1月 by helenadmin

1. echo函数: 输出函数,是命令,不能返回值。echo后面可以跟很多个参数,之间用分号隔开,如: ech […]

Continue reading
Posted in 未分类 · Leave a comment

phpstrnatcmp()函数的用法总结

20 6月01 1月 by helenadmin

definition and usage定义和用法the strnatcmp() function compa […]

Continue reading
Posted in 未分类 · Leave a comment

使用php备份mysql和网站发送到邮箱实例代码

20 6月01 1月 by helenadmin

代码如下: #!/usr/local/bin/php.cli http://www.bkjia.com/php […]

Continue reading
Posted in 未分类 · Leave a comment

wordpress自定义url参数实现路由功能的代码示例

20 6月01 1月 by helenadmin

经过两天的正则表达式的学习,和研究wordpress的路由函数,成功实现了自定义wordpress路由功能,以 […]

Continue reading
Posted in 未分类 · Leave a comment

php正则判断中文utf-8或gbk的思路及具体实现

20 6月01 1月 by helenadmin

utf-8匹配: 在javascript中,要判断字符串是中文是很简单的。比如: 代码如下: var str […]

Continue reading
Posted in 未分类 · Leave a comment

php变量内存分配问题记录整理

20 6月01 1月 by helenadmin

今天碰到一个关于php变量内存分配的问题,记录一下。如下这段代码: 代码如下: $a = array ( &# […]

Continue reading
Posted in 未分类 · Leave a comment

php上传文件时文件过大$

20 6月01 1月 by helenadmin

在做图片上传的时候突然发现一张gif图片上传失败 size为0,实际大小为4.66m。上传小文件时可以,传大文 […]

Continue reading
Posted in 未分类 · Leave a comment

php根据ip地址获取所在城市具体实现

20 6月01 1月 by helenadmin

文件目录: iplocation—–qqwry——&#8212 […]

Continue reading
Posted in 未分类 · Leave a comment

php获取当前url的具体方法全面解析

20 6月01 1月 by helenadmin

我们今天向大家介绍的是有关php获取当前url的函数的具体方法,通过对这个函数方法的了解,进一步加深我们对ph […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 39 40 41 42 43 44 45 46 47 48 49 … 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网