Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

Shell脚本解释器

29 5月13 6月 by helenadmin

Linux上常见的Shell脚本解释器有bash、sh、ash、csh、ksh,习惯上把它们称作一种Shell […]

Continue reading
Posted in 未分类 · Leave a comment

php文件操作

28 5月 by helenadmin

fopen() 函数用于在 PHP 中打开文件。 打开文件 fopen() 函数用于在 PHP 中打开文件。 […]

Continue reading
Posted in 未分类 · Leave a comment

我只是我

28 5月13 12月 by helenadmin

作者:许一世安颜 也许,你看到的我,随和,平静,对一切都是那么的坦然 也许,你看到的我,没有那么多的情感表达, […]

Continue reading
Posted in 随笔 · Leave a comment

python 类声明

28 5月28 5月 by helenadmin

python中类的声明使用关键词class,可以提供一个可选的父类或者说基类,如果没有合适的基类,那就用obj […]

Continue reading
Posted in 未分类 · Leave a comment

风光摄影技巧

25 5月13 12月 by helenadmin

夜晚为了拍摄城市灯光的效果,使用的拍摄参数为,ISO 100,光圈f/16,快门速度30秒。 为什么是ISO […]

Continue reading
Posted in 随笔 · Leave a comment

在创业之前,你需要做好哪些事

23 5月23 5月 by helenadmin

在创业之前,你需要对自己有一个自我的审视,去了解你自己,知道当时的你是一个怎样的人,并且以后的你想要成为怎样的 […]

Continue reading
Posted in 随笔 · Leave a comment

摆地摊拿货一定要注意的事项——批发市场篇

23 5月23 5月 by helenadmin

随着2020年5月底全国文明城市测试指标将“马路市场,流动商贩”不作为测评一个城市文明程度的范围内后,选择摆地 […]

Continue reading
Posted in 随笔 · Leave a comment

世界,你好!

23 5月 by helenadmin

欢迎使用WordPress。这是系统自动生成的演示文章。编辑或者删除它,然后开始您的博客!

Continue reading
Posted in 随笔 · Leave a comment

php下面简单使用memcache

01 1月 by test31297505

记录下,以后脑袋不好使了,可以返回来看看。 1.首先下载 memcached ,百度上面很多,按照自己对应系统 […]

Continue reading
Posted in 未分类 · Leave a comment

php之include载入文件

01 1月 by test31297505

include include_once require require_once 都属于语法结构,而非函数, […]

Continue reading
Posted in 未分类 · Leave a comment

phpexec用法详解

01 1月 by test31297505

exec函数解析 exec语法: string exec(string command, string [ar […]

Continue reading
Posted in 未分类 · Leave a comment

php之自定义错误

01 1月 by test31297505

自定义错误就是自己可以完全控制错误以及其提示内容 设定错误由自己定义的函数来处理 set_error_hand […]

Continue reading
Posted in 未分类 · Leave a comment

初学php分号和逗号的一些经验

01 1月 by test31297505

分号表示该条语句结束, 逗号表示一条语句中某一部分结束。 比如 $myarray=array( ‘ […]

Continue reading
Posted in 未分类 · Leave a comment

php之记录错误日志

01 1月 by test31297505

在开发阶段,需要显示所有错误;而在产品阶段,则需要隐藏所有错误并记录所有错误 同样记录错误有两种方式 在php […]

Continue reading
Posted in 未分类 · Leave a comment

phphnosuchfileordirectory

01 1月 by test31297505

php.h no such file or directory yesterday , i tried to […]

Continue reading
Posted in 未分类 · Leave a comment

140php$

01 1月 by test31297505

php $_server变量 server变量 /* that will give you the resul […]

Continue reading
Posted in 未分类 · Leave a comment

nginx+tomcat取得远程用户ip问题的解决办法

01 1月 by test31297505

nginx+(1…n)tomcat集群部署时,后端tomcat需要取得用户的ip,这时通过 reque […]

Continue reading
Posted in 未分类 · Leave a comment

php之错误显示控制

01 1月 by test31297505

php中错误显示有两个方面进行控制 设定是否显示错误 php.ini 中 display_errors = o […]

Continue reading
Posted in 未分类 · Leave a comment

php初学之常量

01 1月 by test31297505

常量;经常用的东西,有些重要的值不希望被改变,变量的反义词,可以理解成一个写死的、不变的&#20 […]

Continue reading
Posted in 未分类 · Leave a comment

php中把stdclassobject转array的几个方法

01 1月 by test31297505

php和js通讯通常都用json,但用 json 传过来的数组并不是标准的array,而是 stdclass […]

Continue reading
Posted in 未分类 · Leave a comment

关于nginx在tomcat下配置使用

01 1月 by test31297505

upstream localhost { server 127.0.0.1:8080; //配置需要访问的to […]

Continue reading
Posted in 未分类 · Leave a comment

ueditor自定义表单post过来的name

01 1月 by test31297505

自己加入name即可接收的地方$_post[‘aaaaa’]; 以上就介绍了uedit […]

Continue reading
Posted in 未分类 · Leave a comment

经典排序算法

01 1月 by test31297505

经典排序算法 – 冒泡排序bubble sort 原理是临近的数字两两进行比较,按照从小到大或者从 […]

Continue reading
Posted in 未分类 · Leave a comment

php学习笔记之数组操作//待完善v10

01 1月 by test31297505

1、array_map(callable, array) 1.1 将数组中value按照callable中原则 […]

Continue reading
Posted in 未分类 · Leave a comment

如何删除php数组中的元素,并且索引重排

01 1月 by test31297505

如果要在某个数组中删除一个元素,可以直接用的unset,但是数组的索引不会重排: 结果是:array ( [0 […]

Continue reading
Posted in 未分类 · Leave a comment

php强大的时间转换函数strtotime

01 1月 by test31297505

使用strtotime可以将各种格式的时间字符串转换为时间戳 转换常规时间格式 echo date(&#821 […]

Continue reading
Posted in 未分类 · Leave a comment

php实现中文转数字

01 1月 by test31297505

分享一个辅助函数,使用php尽可能识别出字符串中的数字, 先上代码 function checknatint( […]

Continue reading
Posted in 未分类 · Leave a comment

centos67下php5+安装redis扩展组件

01 1月 by test31297505

首先去redis官网,点击 clients 链接,在 browse by language 内点击 php 项 […]

Continue reading
Posted in 未分类 · Leave a comment

lumen可以使用laravel

01 1月 by test31297505

1.laravel-ide-helper 地址https://github.com/barryvdh/lara […]

Continue reading
Posted in 未分类 · Leave a comment

composer安装

01 1月 by test31297505

通过 composer 镜像安装 composer 务必确保已经正确安装了php。 局部安装 局部安装是将 c […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

Previous 1 … 246 247 248 249 250 251 252 253 254 255 256 … 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网