php self,$this,const,static,->的使用

yipeiwu_com6年前
今天来总结下。 、在类的内部方法访问已经声明为const及static的属性时,使用self::$name的形式。注意的是const属性的申明格式,const PI=3.14,而不是co...

PHP 处理图片的类实现代码

yipeiwu_com6年前
复制代码 代码如下: <?php /** * author:yagas * email:yagas60@21cn.com */ class Image { /** 类保护变量 */...

php后台程序与Javascript的两种交互方式

yipeiwu_com6年前
方法一:通过Cookie交互。 一共是三个文件,分别为:index.htm,action.php,main.htm 原理为前台页面main.htm和后台action.php通过页面框架...

php 文件上传系统手记

yipeiwu_com6年前
整个系统只有带码全部用PHP,没有JS,没有正则...纯纯的PHP...其实别的我也不会呵呵... 下面是原表单的html带码... 上传文件表单 复制代码 代码如下: <form...

PHP 简单日历实现代码

yipeiwu_com6年前
PHP 简单日历实现代码
复制代码 代码如下:<?php $monthoneday=date("Ym")."01"; $oneweekday=date("w",strtotime($monthoneday)...

php 显示指定路径下的图片

yipeiwu_com6年前
复制代码 代码如下:function getAllDirAndFile($path) { if(is_file($path)) { if(isImage($path)) { $str="...

php pack与unpack 摸板字符字符含义

yipeiwu_com6年前
format 参数的可能值: a - NUL-padded string A - SPACE-padded string h - Hex string, low nibble first...

ThinkPHP php 框架学习笔记

yipeiwu_com6年前
花了两个多钟在看 ThinkPHP 框架,不想太过深入的知道它的所有高深理论。单纯想知道怎么可以用起来,可以快捷的搭建一个网站。所以是有选择的看,二个钟后还是一头雾水。于是决定改变学习策...

PHP 批量删除数据的方法分析

yipeiwu_com6年前
大家可以参考下面的这篇文章https://www.jb51.net/article/6488.htmSQL:$SQL="delete from `doing` where id in (...

PHP 读取和修改大文件的某行内容的代码

yipeiwu_com6年前
复制代码 代码如下: $fp = fopen('d:/file.txt', 'r+'); if ($fp) { $i = 1; while (!feof($fp)) { //修改第二行数...