Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

关于php数字转大写人民币的代码完善)

01 1月 by test31297505

之前看到一个php版本的把数字变为大写人民币的代码,以前没有打开display_errors,后来为了提高代码 […]

Continue reading
Posted in 未分类 · Leave a comment

redis和memcached如何存储php数组

01 1月 by test31297505

可以以string类型的方式存储。 1、可使用php自带的json_encode和json_decode转换成 […]

Continue reading
Posted in 未分类 · Leave a comment

json

01 1月 by test31297505

大家都知道,json_encode通常会把json中的汉字转义成unicode,但是这并不一定是我们想要的。有 […]

Continue reading
Posted in 未分类 · Leave a comment

linux下为php添加iconv模块的方法

01 1月 by test31297505

./configure –with-mysql=/backup/mysql –with […]

Continue reading
Posted in 未分类 · Leave a comment

php函数,伪函数的使用:函数名长,会影响到性能?

01 1月 by test31297505

函数名长,会影响到性能 对于php函数的使用,有如下一些建议 1. 一个功能可以用内置函数完成,尽量使用它而不 […]

Continue reading
Posted in 未分类 · Leave a comment

php+js三级菜单联动菜单实现方法

01 1月 by test31297505

本文实例讲述了php+js三级菜单联动菜单实现方法。分享给大家供大家参考,具体如下: 智能递归菜单-读取数据库

Continue reading
Posted in 未分类 · Leave a comment

23instanceobjects

01 1月 by test31297505

默认情况下,依赖注入 是用 get 方法 如果想要注入时,每次实例化的是新的对象,则在 节点的 shared […]

Continue reading
Posted in 未分类 · Leave a comment

php中模拟链表和链表的基本操作示例

01 1月 by test31297505

模拟链表: name = $name; $this->id = $id; } /** * 遍历链表 */ pu […]

Continue reading
Posted in 未分类 · Leave a comment

php+mysql实现的简单投票系统实例

01 1月 by test31297505

本文实例讲述了php+mysql实现的简单投票系统。分享给大家供大家参考,具体如下: 手机系统调查问卷 你现在 […]

Continue reading
Posted in 未分类 · Leave a comment

meteor用户登录注册密码验证php版本

01 1月 by test31297505

meteor 对用户密码加密的模块在 accounts-password 下: https://github. […]

Continue reading
Posted in 未分类 · Leave a comment

简单谈谈php中strlen函数

01 1月 by test31297505

strlen函数说明。 int strlen ( string $string ) 在这篇文章,我们可以知道s […]

Continue reading
Posted in 未分类 · Leave a comment

ngnix开发(五)将rtmp直播流转换成hls直播流

01 1月 by test31297505

1:修改/usr/local/nginx/conf/ngnix.conf,红色字体为添加内容。 #rtmp直播 […]

Continue reading
Posted in 未分类 · Leave a comment

php正则解析apache日志文件文件

01 1月 by test31297505

可以把日志按小时滚动,采用php正则分析日志的方式进行解决 $logline =’127.0.0. […]

Continue reading
Posted in 未分类 · Leave a comment

php计算当前坐标3公里内4个角落的最大最小经纬度实例

01 1月 by test31297505

本文实例讲述了php计算当前坐标3公里内4个角落的最大最小经纬度的方法。分享给大家供大家参考,具体如下: // […]

Continue reading
Posted in 未分类 · Leave a comment

php输出gzip压缩

01 1月 by test31297505

functionob_gzip($content){if(!headers_sent()&&#038 […]

Continue reading
Posted in 未分类 · Leave a comment

php实现根据时间戳获取周几的方法

01 1月 by test31297505

本文实例讲述了php实现根据时间戳获取周几的方法。分享给大家供大家参考,具体如下: 获取某个时间戳的周几,以及 […]

Continue reading
Posted in 未分类 · Leave a comment

php设计模式策略模式

01 1月 by test31297505

策略模式: 将一组特定的行为和算法封装成类,以适应某些特定的上下文环境; 实际应用举例,假如一个电商网站系统, […]

Continue reading
Posted in 未分类 · Leave a comment

143php接口

01 1月 by test31297505

php 写app接口 php 接口 特殊的抽象类interface / implements 关键字实现接口 […]

Continue reading
Posted in 未分类 · Leave a comment

phptry

01 1月 by test31297505

php try-catch 语句为了进一步处理异常,我们需要使用try-catch语句—-包括tr […]

Continue reading
Posted in 未分类 · Leave a comment

ffmpeg的php扩展在64位系统下的安装

01 1月 by test31297505

1:接我上篇博客,是在32位的win7系统下的安装说明。 2:我在我的笔记本上安装了64位的win7,php的 […]

Continue reading
Posted in 未分类 · Leave a comment

php中的注释

01 1月 by test31297505

// 这是 php 单行注释/*这是 php 多行 注释 */ 以上就介绍了php 中的注释,包括了方面的内容 […]

Continue reading
Posted in 未分类 · Leave a comment

php调用java写的webservices提示uncaughtsoapfaultexception:[http]notfound

01 1月 by test31297505

new client(远程wsdl)的时候wsdl地址是带端口的,一直提示uncaught soapfault […]

Continue reading
Posted in 未分类 · Leave a comment

nginx跳转指定接口

01 1月 by test31297505

nginx 跳转指定接口 场景: 进行stub测试时,程序访问的不是真正的接口,而是stub接口(提供假数据) […]

Continue reading
Posted in 未分类 · Leave a comment

http

01 1月 by test31297505

http_build_query是用来生成url请求字符串的函数,很简单.不过今天却出现了一点小意外,在本机安 […]

Continue reading
Posted in 未分类 · Leave a comment

php中cookie和session使用范例

01 1月 by test31297505
Continue reading
Posted in 未分类 · Leave a comment

php中利用gd图片验证码生成和保存

01 1月 by test31297505
Continue reading
Posted in 未分类 · Leave a comment

php查看文件修改时间

01 1月 by test31297505

系统文件: 在开发中我们有时需要知道文件的最后访问时间和文件最后修改的时间,介绍一下php提供的确定文件的访问 […]

Continue reading
Posted in 未分类 · Leave a comment

phptrycatch:捕捉异常,抛出异常

01 1月 by test31297505

php try catch : 捕捉异常,抛出异常: /** * 构造函数:自动加载连接数据库 * @para […]

Continue reading
Posted in 未分类 · Leave a comment

php实现各种经典算法

01 1月 by test31297505

原文地址:http://www.360doc.com/content/14/0319/16/15326015_ […]

Continue reading
Posted in 未分类 · Leave a comment

[php函数]–数组函数–array

01 1月 by test31297505

array_chunk 版本:>= 4.2说明: array_chunk(array $input, int […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 253 254 255 256 257 258 259 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网