Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

java调用php实例

01 1月 by test31297505

package test; import java.io.inputstream; import java.i […]

Continue reading
Posted in 未分类 · Leave a comment

zendstudio的主题安装,插件安装、卸载和更新

01 1月 by test31297505

初接触zend studio,网上搜了一圈如何安装主题,只有一个方法install new software, […]

Continue reading
Posted in 未分类 · Leave a comment

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

01 1月 by test31297505

array_change_key_case 版本: >= php4.2说明: array_change_key […]

Continue reading
Posted in 未分类 · Leave a comment

php/javabridge实例|php调用java实例

01 1月 by test31297505

package test; publicclasshelloworld {publicstaticfinal […]

Continue reading
Posted in 未分类 · Leave a comment

php&mysql(二)——困也得啃书

01 1月 by test31297505

madan,所有事情都敢赶在一起。。。以后每天中午去学车啊,好开心。。晚上好困,但是困也得啃书。。。。。。。。 […]

Continue reading
Posted in 未分类 · Leave a comment

php面向对象中static静态属性和静态方法的调用

01 1月 by test31297505

这里分析了php面向对象中static静态属性和静态方法的调用。关于它们的调用(能不能调用,怎么样调用),需要 […]

Continue reading
Posted in 未分类 · Leave a comment

构建自己的php框架

01 1月 by test31297505

在之前的博客中,我们实现并完善了model类的findone方法,下面我们来实现其中的其他方法。 先来看fin […]

Continue reading
Posted in 未分类 · Leave a comment

nginx的http20性能太逆天了,https网站性能优化

01 1月 by test31297505

背景 我们七层负载层,使用了5台24u+64g内存的物理机支行nginx做https加解密与proxy_pas […]

Continue reading
Posted in 未分类 · Leave a comment

php中include和require的区别

01 1月 by test31297505

下面介绍php代码中include()语句和require()语句的区别: 1.加载方式及出错处理方式不同 i […]

Continue reading
Posted in 未分类 · Leave a comment

centos安装搭建php环境

01 1月 by test31297505

1、首先安装apache yum install httpd httpd-devel 启动服务 service […]

Continue reading
Posted in 未分类 · Leave a comment

php判断数组内容是否都为一样的值

01 1月 by test31297505

$err为post的单选按钮组内容,客户要求不能所有的单选按钮组都选第一个,也就是1,也就是下边的优秀。 // […]

Continue reading
Posted in 未分类 · Leave a comment

php语言、浏览器、操作系统、ip、地理位置、isp

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

实时查看及监控php

01 1月 by test31297505

php-fpm内置了状态页,开启后可查看php-fpm的详细运行状态,给php-fpm优化带来帮助。下面本篇文 […]

Continue reading
Posted in 未分类 · Leave a comment

隐藏iframe无刷新上传文件

01 1月 by test31297505

首先ajax不能上传文件,这误导了我有段时间,今晚睡不着就照着说明做了个无刷新上传文件 其实原理很简单 和一般 […]

Continue reading
Posted in 未分类 · Leave a comment

php判断form来的数据是否为整数

01 1月 by test31297505

is_int函数对于form过来的数据是没有办法判断是否是整数的,因为form过来的是字符串。用is_nume […]

Continue reading
Posted in 未分类 · Leave a comment

[php版]设计模式目录

01 1月 by test31297505

六个创建型模式 ‘).addclass(‘pre-numbering’). […]

Continue reading
Posted in 未分类 · Leave a comment

php

01 1月 by test31297505

更多请猛戳:http://www.webyang.net/html/web/article_242.html […]

Continue reading
Posted in 未分类 · Leave a comment

php功能强大的字符串处理函数

01 1月 by test31297505

列举几个php语言中被遗忘的一些但功能非常强大的字符串处理函数,这里就不对其用法一个个举例了,感兴趣的朋友可以 […]

Continue reading
Posted in 未分类 · Leave a comment

解析wordpress中控制用户登陆和判断用户登陆的php函数

01 1月 by test31297505

登陆函数:wp_signon() 函数介绍:wp_signon()函数用于授权给用户登陆wordpress并可 […]

Continue reading
Posted in 未分类 · Leave a comment

php为app提供接口携带参数并返回

01 1月 by test31297505

以上就介绍了php为app提供接口携带参数并返回,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。

Continue reading
Posted in 未分类 · Leave a comment

php编程每天必学之表单验证

01 1月 by test31297505

本文实例讲解了php表单验证的实现方法,分享给大家供大家参考,具体内容如下 1.php表单处理welcome. […]

Continue reading
Posted in 未分类 · Leave a comment

nginx+ci出现404错误

01 1月 by test31297505

最近刚学ci框架,做了个简单的项目,在本地搭服务器的环境都调通了,但是部署到远程服务器时: http://ex […]

Continue reading
Posted in 未分类 · Leave a comment

使用php

01 1月 by test31297505

最近由于工作需要,研究了一下php如何生成条形码。虽然二维码时下比较流行,但是条形码依然应用广泛,不可替代。园 […]

Continue reading
Posted in 未分类 · Leave a comment

apache和nginx区别

01 1月 by test31297505

1、apache和nginx优缺点 nginx相对于apache的优点: 轻量级,同样起web 服务,比apa […]

Continue reading
Posted in 未分类 · Leave a comment

如何实现一个php框架系列文章mysql数据库

01 1月 by test31297505

实现一个mysql数据库封装需要考虑的问题 使用方便性 采用直接sql语句操作方式。只要会写sql语句,那么将 […]

Continue reading
Posted in 未分类 · Leave a comment

howtogetthelatestffmpegbinariesforwindows

01 1月 by test31297505

last time i guided you on how to install ffmpeg on mac […]

Continue reading
Posted in 未分类 · Leave a comment

php运行出现notice:useofundefinedconstant完美解决方案

01 1月 by test31297505

notice: use of undefined constant title – assumed […]

Continue reading
Posted in 未分类 · Leave a comment

phpparseerror:syntaxerror,unexpectedendoffile

01 1月 by test31297505

使用xampp的wordpress时,按照新的主题时,发生如下错误: parse error: syntax […]

Continue reading
Posted in 未分类 · Leave a comment

php中字符串与多进制转换函数

01 1月 by test31297505

转换函数 /** * [字符串转换为(2,8,16进制)ascii码] * @param string $st […]

Continue reading
Posted in 未分类 · Leave a comment

php字符串的比较

01 1月 by test31297505

int strcmp( string $str1 , string $str2 ) 注意该比较区分大小写。 参 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

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