Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

[我的php之旅]yii框架学习03连接数据库(使用activerecord)

01 1月 by test31297505

随意准备一个数据表 createtable`entry` ( `id`int(11) notnull auto […]

Continue reading
Posted in 未分类 · Leave a comment

php计算日期相差天数实例分析

01 1月 by test31297505

本文实例分析了php计算日期相差天数的方法。分享给大家供大家参考,具体如下: //—— […]

Continue reading
Posted in 未分类 · Leave a comment

php发送post请求

01 1月 by test31297505

/** * 发送post请求 * @param string $url 请求地址 * @param array […]

Continue reading
Posted in 未分类 · Leave a comment

php基于fleaphp框架实现cvs数据导入mysql的方法

01 1月 by test31297505

本文实例讲述了php基于fleaphp框架实现cvs数据导入mysql的方法。分享给大家供大家参考,具体如下: […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu安装nodejs+pomelo+webstrom

01 1月 by test31297505

https://github.com/netease/pomelo/wiki/pomelo%e5%bf%ab% […]

Continue reading
Posted in 未分类 · Leave a comment

php实现查询两个数组中不同元素的方法

01 1月 by test31297505

本文实例讲述了php实现查询两个数组中不同元素的方法。分享给大家供大家参考,具体如下: 结果: array ( […]

Continue reading
Posted in 未分类 · Leave a comment

move

01 1月 by test31297505

php的基本语法学习的差不多了,现在开始学习php的文件上传功能实现了。功能中使用到了move_uploade […]

Continue reading
Posted in 未分类 · Leave a comment

phpconst与define区别

01 1月 by test31297505

原文地址:http://www.manongjc.com/article/491.html const是用于类 […]

Continue reading
Posted in 未分类 · Leave a comment

将mssql数据对应转换到mysql

01 1月 by test31297505

一.我就职于一个小公司,每天的工作是维护网站正常运行,改写网站的小bug,以及配合老板每个”灵光乍 […]

Continue reading
Posted in 未分类 · Leave a comment

php中字符串常用的截取操作

01 1月 by test31297505

因为最近的开发需求,在将密码进行md5加密后,涉及到密文的字符串截取。所以写了这篇blog,希望大家支持。 以 […]

Continue reading
Posted in 未分类 · Leave a comment

nginx操作

01 1月 by test31297505

一、启动与停止 1. 启动 安装目录 + -c + 配置文件地址2. 验证配置文件的正确性 ./nginx – […]

Continue reading
Posted in 未分类 · Leave a comment

正值表达式匹配html标签的属性值

01 1月 by test31297505

  今天由于工作的需求,需要获取html标签的属性值,立即想到了正则表达式,标签如下: 需要获取标签的cx、c […]

Continue reading
Posted in 未分类 · Leave a comment

phpdomdocument递归格式化缩进html文档

01 1月 by test31297505

php domdocument 递归 格式化缩进html文档 function format(\domnode […]

Continue reading
Posted in 未分类 · Leave a comment

解决php的“itisnotsafetorelyonthesystem’stimezonesettings”问题

01 1月 by test31297505

这篇文章主要介绍了解决php的“it is not safe to rely on the system’s […]

Continue reading
Posted in 未分类 · Leave a comment

nginx配置https

01 1月 by test31297505

最近开发登录系统,由于涉及到密码相关,请求需要以https方式,而线上大前端的nginx有认证的数字证书,因此 […]

Continue reading
Posted in 未分类 · Leave a comment

php去掉url里的indexphp

01 1月 by test31297505

php项目中,为了访问链接的友好性及seo优化,我们经常需要为访问页面配置一个短链接,并把index.php去 […]

Continue reading
Posted in 未分类 · Leave a comment

nginx的alias的用法及和root的区别

01 1月 by test31297505

nginx的alias的用法及和root的区别 http://nginx.org/en/docs/http/n […]

Continue reading
Posted in 未分类 · Leave a comment

php错误提示open

01 1月 by test31297505

今天在帮助一个朋友配置一台服务器时发现网站配置好了缓存目录读写不成功,在打开错误时发现提示 warning: […]

Continue reading
Posted in 未分类 · Leave a comment

php内置webserver探究(二)自定义php控制台输出console函数

01 1月 by test31297505

我们在开发app的服务器端,当和app进行联调时通常需要实时跟踪url请求和参数的接收情况。 但php并没有像 […]

Continue reading
Posted in 未分类 · Leave a comment

php之标准类

01 1月 by test31297505

php是内置标准类的(stdclass)

Continue reading
Posted in 未分类 · Leave a comment

php之对象遍历

01 1月 by test31297505

对象可以使用foreach进行遍历,只能遍历属性以及访问范围内的

Continue reading
Posted in 未分类 · Leave a comment

php之序列化

01 1月 by test31297505

序列化就是将变量数据转换为字符串(跟类型转换机制不同),一般应用于存储数据(文件),然后在别的情形下恢复(反序 […]

Continue reading
Posted in 未分类 · Leave a comment

织梦仿站学习笔记(一)

01 1月 by test31297505

【php】织梦仿站学习笔记(一) 仿站是针对目标网站进行仿制。仿站主要从页面风格和功能上进行仿制 […]

Continue reading
Posted in 未分类 · Leave a comment

stickup一个jquery插件

01 1月 by test31297505

这是一个简单的jquery插件,它能让页面目标元素 “固定” 在浏览器窗口的顶部,即便页面在滚动,目标元素仍然 […]

Continue reading
Posted in 未分类 · Leave a comment

android访问php调取json数据

01 1月 by test31297505

做android项目,离不开去服务器取数据,典型的就是android访问php调取json数据。网上类&#20 […]

Continue reading
Posted in 未分类 · Leave a comment

php之类型约束

01 1月 by test31297505

在强类型语言中,类型约束是语法上的要求,即定义一个变量的时候,必须指定类型,并以后也只能存储该类型数据; ph […]

Continue reading
Posted in 未分类 · Leave a comment

nginx开发(二)配置mp4文件在线播放

01 1月 by test31297505

1: 第一步先开打nginx的文件夹遍历功能 vi /usr/local/nginx/conf/nginx.c […]

Continue reading
Posted in 未分类 · Leave a comment

php魔术常量实例介绍

01 1月 by test31297505

魔术常量 php向它运行的任何脚本提供了大量的预定义常量了,我们常用的php魔术常量有 __class__ _ […]

Continue reading
Posted in 未分类 · Leave a comment

yii1x到yii2x的细节变化

01 1月 by test31297505

yii2中将表名返回值默认格式是{{%user}} 而yii1中返回的是{{user}} 查看了一下源码,发现 […]

Continue reading
Posted in 未分类 · Leave a comment

nginx中的mimetypes的作用

01 1月 by test31297505

mime-type和content-type的关系:当web服务器收到静态的资源文件请求时,依据请求文件的后缀 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 250 251 252 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网