Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

部署php项目应该注意的几点

20 6月01 1月 by helenadmin

在部署php项目时,有几点需要特别注意,也是初学者比较容易忽视的点: 一、下载wampserver后,如何安装 […]

Continue reading
Posted in 未分类 · Leave a comment

php$

20 6月01 1月 by helenadmin

[page]$_server[‘php_self’] #当前正在执行脚本的文件名,与 […]

Continue reading
Posted in 未分类 · Leave a comment

基于php实现阿里云开放存储服务

20 6月01 1月 by helenadmin

开放存储服务(openstorageservice,简称oss),是阿里云对外提供的海量,安全,低成本,高可靠 […]

Continue reading
Posted in 未分类 · Leave a comment

codeigniterphp显示值截取的值解决方案

20 6月01 1月 by helenadmin

codeigniter php 显示值截取-值 ——&#8 […]

Continue reading
Posted in 未分类 · Leave a comment

php输入流php://input使用示例(php发送图片流到服务器)

20 6月01 1月 by helenadmin

从官网信息来看,php://input是一个只读信息流,当请求方式是post的,并且enctype不等于”mu […]

Continue reading
Posted in 未分类 · Leave a comment

php的扩展和嵌入–c++类的扩展开发

20 6月01 1月 by helenadmin

今天花了几乎一天的时间研究php的相关c++扩展,第一次接触的时候很多地方不太熟悉,也碰到了不 […]

Continue reading
Posted in 未分类 · Leave a comment

php关于正则表达式的事

20 6月01 1月 by helenadmin

工作中,我们经常要用到正则表达式去匹配到我们想要的数据,甚至还会把匹配到的数据替换成我们需要的数据。这一切,& […]

Continue reading
Posted in 未分类 · Leave a comment

php的扩展和嵌入–c扩展开发helloworld

20 6月01 1月 by helenadmin

在linux下面完成了lamp的配置环境之后,就可以进行php的扩展开发了。 php中的扩展开发都在源码包的/ […]

Continue reading
Posted in 未分类 · Leave a comment

php二维数组排序方法(array

20 6月01 1月 by helenadmin

例如像下面的数组: 代码如下: $users = array( array(‘name&#8217 […]

Continue reading
Posted in 未分类 · Leave a comment

php的一些高效技巧

20 6月01 1月 by helenadmin

静态调用的成员一定要定义成 static (php5 only) 贴士:php 5 引入了静态成员的概念,作用 […]

Continue reading
Posted in 未分类 · Leave a comment

php的扩展和嵌入–php内存管理

20 6月01 1月 by helenadmin

php对内存的管理机制相当的详尽,它在这一点上更类似与java的垃圾回收机制。而对于c语言或者c […]

Continue reading
Posted in 未分类 · Leave a comment

在php使用pdo类查询mysql

20 6月01 1月 by helenadmin

在我的php开发过程中,数据库的采用都是使用mysql数据库,与数据库有关的操作基本上都是使用php中的mys […]

Continue reading
Posted in 未分类 · Leave a comment

提高你的php编程效率需要注意的一些小细节

20 6月01 1月 by helenadmin

注意一些小细节会让你的php运行效率更高 比如在使用echo输出的时候如果字符串采用单引号会比采用双引号效率更 […]

Continue reading
Posted in 未分类 · Leave a comment

php:自定义的格式化时间方法

20 6月01 1月 by helenadmin

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

Continue reading
Posted in 未分类 · Leave a comment

php的扩展和嵌入–php内部变量

20 6月01 1月 by helenadmin

之前对于php的内部生命周期和zend引擎的线程安全机制做了一个介绍,这里这篇文章则是主要介绍php的内部变量 […]

Continue reading
Posted in 未分类 · Leave a comment

php获取文件的扩展名的6种方法

20 6月01 1月 by helenadmin

昨天, 和一个朋友在php交流群(276167802, 验证:csl,有兴趣的话可以加入进来一起讨论)里提到p […]

Continue reading
Posted in 未分类 · Leave a comment

php查看请求头信息获取远程图片大小的方法分享

20 6月01 1月 by helenadmin

如果要获取远程图片的大小,一种普遍的做法是先将远程图片的内容获取回来,再用strlen计算长度,这种方法需要将 […]

Continue reading
Posted in 未分类 · Leave a comment

php如何同时连接多个数据库

20 6月01 1月 by helenadmin

下面是一个函数能够保证连接多个数据库的下不同的表的函数,可以收藏一下,比较实用,测试过是有用的。 functi […]

Continue reading
Posted in 未分类 · Leave a comment

php的扩展和嵌入–总纲

20 6月01 1月 by helenadmin

初步接触了php开发以及php扩展的相关内容,发现extending and embeded php这本书很不 […]

Continue reading
Posted in 未分类 · Leave a comment

php页面静态化之真静态

20 6月01 1月 by helenadmin

之前的缓存和现在所说的页面静态化都是为网站提速的,如果是访问量小的小型网站可能不需要但是如果网站规模或访问量很 […]

Continue reading
Posted in 未分类 · Leave a comment

php的扩展和嵌入–php的生命周期与变量详述

20 6月01 1月 by helenadmin

首先开始介绍php的生命周期,了解一个php程序从开始运行到最后结束究竟经过怎么样的过程,对学习php和平时p […]

Continue reading
Posted in 未分类 · Leave a comment

php分页实现(附效果图)

20 6月01 1月 by helenadmin

首先一个分页类,如下(摘自网络)可拷贝直接使用 在需要分页的php文件中 include_once (&#82 […]

Continue reading
Posted in 未分类 · Leave a comment

php对数组排序的简单实例

20 6月01 1月 by helenadmin

代码如下:

Continue reading
Posted in 未分类 · Leave a comment

iosphp服务器客户端准备工作

20 6月01 1月 by helenadmin

今天终于完完全全的搞明白了,apns 推送前,客户端的准备工作需要那一些。如果有错误的地方,欢迎大神指出来。 […]

Continue reading
Posted in 未分类 · Leave a comment

php适用于windows的fnmatch(匹配函数),可匹配中文。

20 6月01 1月 by helenadmin

该贴中有两种方法可以实现fnmatch函数,现贴如下: function fnmatch($pattern, […]

Continue reading
Posted in 未分类 · Leave a comment

纯php多文件上传

20 6月01 1月 by helenadmin

本例就一个php,适合学习,本例可以添加到数据库的代码 上传多个文件时候请一次选择多个文件,支持doc jpg […]

Continue reading
Posted in 未分类 · Leave a comment

phpstudy中起用lua脚本

20 6月01 1月 by helenadmin

phpstudy集成了多种web服务的综合配置,如经典的apache+mysql、nginx+ […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu12.04使用c编写php扩展模块教程分享

20 6月01 1月 by helenadmin

系统是ubuntu 12.04,已经安装好了apache和php,php的版本是5.3.10。 以下操作如果碰 […]

Continue reading
Posted in 未分类 · Leave a comment

php类的使用与总结

20 6月01 1月 by helenadmin

一:结构和调用(实例化): class classname{} ,调用:$obj = new classnam […]

Continue reading
Posted in 未分类 · Leave a comment

使用php

20 6月01 1月 by helenadmin

php_imagick是php对图片处理的一个扩展包,可以完成对图片改变大小、旋转、锐化、减色或增加特效等操作 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

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