# GD(内置)
要激活 GD 支持,配置 PHP 时加上\*\*--with-gd\[=DIR\]**,DIR 是 GD 的基本安装目录。要使用推荐的绑定的 GD 库版本(首次绑定于 PHP 4.3.0),使用**--with-gd\*\*。要编译 GD 库,需要libpng和libjpeg。
windows启用php\_gd2.dll
要想在 PHP 中使用图像处理功能,你需要连带GD库一起来编译 PHP。GD库和 PHP 可能需要其他的库, 这取决于你要处理的图像格式
- [范例](https://www.php.net/manual/zh/image.examples.php)
- [使用 PHP 创建 PNG 图像](https://www.php.net/manual/zh/image.examples-png.php)
- [使用 Alpha 通道为图像加水印](https://www.php.net/manual/zh/image.examples-watermark.php)
- [使用 imagecopymerge 函数创建半透明水印](https://www.php.net/manual/zh/image.examples.merged-watermark.php)
- [GD 和图像处理 函数](https://www.php.net/manual/zh/ref.image.php)
- [gd\_info](https://www.php.net/manual/zh/function.gd-info.php)— 取得当前安装的 GD 库的信息
- [getimagesize](https://www.php.net/manual/zh/function.getimagesize.php)— 取得图像大小
- [getimagesizefromstring](https://www.php.net/manual/zh/function.getimagesizefromstring.php)— 从字符串中获取图像尺寸信息
- [image\_type\_to\_extension](https://www.php.net/manual/zh/function.image-type-to-extension.php)— 取得图像类型的文件后缀
- [image\_type\_to\_mime\_type](https://www.php.net/manual/zh/function.image-type-to-mime-type.php)— 取得 getimagesize,exif\_read\_data,exif\_thumbnail,exif\_imagetype 所返回的图像类型的 MIME 类型
- [image2wbmp](https://www.php.net/manual/zh/function.image2wbmp.php)— 以 WBMP 格式将图像输出到浏览器或文件
- [imageaffine](https://www.php.net/manual/zh/function.imageaffine.php)— 返回经过仿射变换后的图像,剪切区域可选
- [imageaffinematrixconcat](https://www.php.net/manual/zh/function.imageaffinematrixconcat.php)— Concatenate two affine transformation matrices
- [imageaffinematrixget](https://www.php.net/manual/zh/function.imageaffinematrixget.php)— Get an affine transformation matrix
- [imagealphablending](https://www.php.net/manual/zh/function.imagealphablending.php)— 设定图像的混色模式
- [imageantialias](https://www.php.net/manual/zh/function.imageantialias.php)— 是否使用抗锯齿(antialias)功能
- [imagearc](https://www.php.net/manual/zh/function.imagearc.php)— 画椭圆弧
- [imagebmp](https://www.php.net/manual/zh/function.imagebmp.php)— Output a BMP image to browser or file
- [imagechar](https://www.php.net/manual/zh/function.imagechar.php)— 水平地画一个字符
- [imagecharup](https://www.php.net/manual/zh/function.imagecharup.php)— 垂直地画一个字符
- [imagecolorallocate](https://www.php.net/manual/zh/function.imagecolorallocate.php)— 为一幅图像分配颜色
- [imagecolorallocatealpha](https://www.php.net/manual/zh/function.imagecolorallocatealpha.php)— 为一幅图像分配颜色 + alpha
- [imagecolorat](https://www.php.net/manual/zh/function.imagecolorat.php)— 取得某像素的颜色索引值
- [imagecolorclosest](https://www.php.net/manual/zh/function.imagecolorclosest.php)— 取得与指定的颜色最接近的颜色的索引值
- [imagecolorclosestalpha](https://www.php.net/manual/zh/function.imagecolorclosestalpha.php)— 取得与指定的颜色加透明度最接近的颜色
- [imagecolorclosesthwb](https://www.php.net/manual/zh/function.imagecolorclosesthwb.php)— 取得与给定颜色最接近的色度的黑白色的索引
- [imagecolordeallocate](https://www.php.net/manual/zh/function.imagecolordeallocate.php)— 取消图像颜色的分配
- [imagecolorexact](https://www.php.net/manual/zh/function.imagecolorexact.php)— 取得指定颜色的索引值
- [imagecolorexactalpha](https://www.php.net/manual/zh/function.imagecolorexactalpha.php)— 取得指定的颜色加透明度的索引值
- [imagecolormatch](https://www.php.net/manual/zh/function.imagecolormatch.php)— 使一个图像中调色板版本的颜色与真彩色版本更能匹配
- [imagecolorresolve](https://www.php.net/manual/zh/function.imagecolorresolve.php)— 取得指定颜色的索引值或有可能得到的最接近的替代值
- [imagecolorresolvealpha](https://www.php.net/manual/zh/function.imagecolorresolvealpha.php)— 取得指定颜色 + alpha 的索引值或有可能得到的最接近的替代值
- [imagecolorset](https://www.php.net/manual/zh/function.imagecolorset.php)— 给指定调色板索引设定颜色
- [imagecolorsforindex](https://www.php.net/manual/zh/function.imagecolorsforindex.php)— 取得某索引的颜色
- [imagecolorstotal](https://www.php.net/manual/zh/function.imagecolorstotal.php)— 取得一幅图像的调色板中颜色的数目
- [imagecolortransparent](https://www.php.net/manual/zh/function.imagecolortransparent.php)— 将某个颜色定义为透明色
- [imageconvolution](https://www.php.net/manual/zh/function.imageconvolution.php)— 用系数 div 和 offset 申请一个 3x3 的卷积矩阵
- [imagecopy](https://www.php.net/manual/zh/function.imagecopy.php)— 拷贝图像的一部分
- [imagecopymerge](https://www.php.net/manual/zh/function.imagecopymerge.php)— 拷贝并合并图像的一部分
- [imagecopymergegray](https://www.php.net/manual/zh/function.imagecopymergegray.php)— 用灰度拷贝并合并图像的一部分
- [imagecopyresampled](https://www.php.net/manual/zh/function.imagecopyresampled.php)— 重采样拷贝部分图像并调整大小
- [imagecopyresized](https://www.php.net/manual/zh/function.imagecopyresized.php)— 拷贝部分图像并调整大小
- [imagecreate](https://www.php.net/manual/zh/function.imagecreate.php)— 新建一个基于调色板的图像
- [imagecreatefrombmp](https://www.php.net/manual/zh/function.imagecreatefrombmp.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefromgd2](https://www.php.net/manual/zh/function.imagecreatefromgd2.php)— 从 GD2 文件或 URL 新建一图像
- [imagecreatefromgd2part](https://www.php.net/manual/zh/function.imagecreatefromgd2part.php)— 从给定的 GD2 文件或 URL 中的部分新建一图像
- [imagecreatefromgd](https://www.php.net/manual/zh/function.imagecreatefromgd.php)— 从 GD 文件或 URL 新建一图像
- [imagecreatefromgif](https://www.php.net/manual/zh/function.imagecreatefromgif.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefromjpeg](https://www.php.net/manual/zh/function.imagecreatefromjpeg.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefrompng](https://www.php.net/manual/zh/function.imagecreatefrompng.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefromstring](https://www.php.net/manual/zh/function.imagecreatefromstring.php)— 从字符串中的图像流新建一图像
- [imagecreatefromwbmp](https://www.php.net/manual/zh/function.imagecreatefromwbmp.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefromwebp](https://www.php.net/manual/zh/function.imagecreatefromwebp.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefromxbm](https://www.php.net/manual/zh/function.imagecreatefromxbm.php)— 由文件或 URL 创建一个新图象。
- [imagecreatefromxpm](https://www.php.net/manual/zh/function.imagecreatefromxpm.php)— 由文件或 URL 创建一个新图象。
- [imagecreatetruecolor](https://www.php.net/manual/zh/function.imagecreatetruecolor.php)— 新建一个真彩色图像
- [imagecrop](https://www.php.net/manual/zh/function.imagecrop.php)— Crop an image to the given rectangle
- [imagecropauto](https://www.php.net/manual/zh/function.imagecropauto.php)— Crop an image automatically using one of the available modes
- [imagedashedline](https://www.php.net/manual/zh/function.imagedashedline.php)— 画一虚线
- [imagedestroy](https://www.php.net/manual/zh/function.imagedestroy.php)— 销毁一图像
- [imageellipse](https://www.php.net/manual/zh/function.imageellipse.php)— 画一个椭圆
- [imagefill](https://www.php.net/manual/zh/function.imagefill.php)— 区域填充
- [imagefilledarc](https://www.php.net/manual/zh/function.imagefilledarc.php)— 画一椭圆弧且填充
- [imagefilledellipse](https://www.php.net/manual/zh/function.imagefilledellipse.php)— 画一椭圆并填充
- [imagefilledpolygon](https://www.php.net/manual/zh/function.imagefilledpolygon.php)— 画一多边形并填充
- [imagefilledrectangle](https://www.php.net/manual/zh/function.imagefilledrectangle.php)— 画一矩形并填充
- [imagefilltoborder](https://www.php.net/manual/zh/function.imagefilltoborder.php)— 区域填充到指定颜色的边界为止
- [imagefilter](https://www.php.net/manual/zh/function.imagefilter.php)— 对图像使用过滤器
- [imageflip](https://www.php.net/manual/zh/function.imageflip.php)— Flips an image using a given mode
- [imagefontheight](https://www.php.net/manual/zh/function.imagefontheight.php)— 取得字体高度
- [imagefontwidth](https://www.php.net/manual/zh/function.imagefontwidth.php)— 取得字体宽度
- [imageftbbox](https://www.php.net/manual/zh/function.imageftbbox.php)— 给出一个使用 FreeType 2 字体的文本框
- [imagefttext](https://www.php.net/manual/zh/function.imagefttext.php)— 使用 FreeType 2 字体将文本写入图像
- [imagegammacorrect](https://www.php.net/manual/zh/function.imagegammacorrect.php)— 对 GD 图像应用 gamma 修正
- [imagegd2](https://www.php.net/manual/zh/function.imagegd2.php)— 将 GD2 图像输出到浏览器或文件
- [imagegd](https://www.php.net/manual/zh/function.imagegd.php)— 将 GD 图像输出到浏览器或文件
- [imagegetclip](https://www.php.net/manual/zh/function.imagegetclip.php)— Get the clipping rectangle
- [imagegif](https://www.php.net/manual/zh/function.imagegif.php)— 输出图象到浏览器或文件。
- [imagegrabscreen](https://www.php.net/manual/zh/function.imagegrabscreen.php)— Captures the whole screen
- [imagegrabwindow](https://www.php.net/manual/zh/function.imagegrabwindow.php)— Captures a window
- [imageinterlace](https://www.php.net/manual/zh/function.imageinterlace.php)— 激活或禁止隔行扫描
- [imageistruecolor](https://www.php.net/manual/zh/function.imageistruecolor.php)— 检查图像是否为真彩色图像
- [imagejpeg](https://www.php.net/manual/zh/function.imagejpeg.php)— 输出图象到浏览器或文件。
- [imagelayereffect](https://www.php.net/manual/zh/function.imagelayereffect.php)— 设定 alpha 混色标志以使用绑定的 libgd 分层效果
- [imageline](https://www.php.net/manual/zh/function.imageline.php)— 画一条线段
- [imageloadfont](https://www.php.net/manual/zh/function.imageloadfont.php)— 载入一新字体
- [imageopenpolygon](https://www.php.net/manual/zh/function.imageopenpolygon.php)— Draws an open polygon
- [imagepalettecopy](https://www.php.net/manual/zh/function.imagepalettecopy.php)— 将调色板从一幅图像拷贝到另一幅
- [imagepalettetotruecolor](https://www.php.net/manual/zh/function.imagepalettetotruecolor.php)— Converts a palette based image to true color
- [imagepng](https://www.php.net/manual/zh/function.imagepng.php)— 以 PNG 格式将图像输出到浏览器或文件
- [imagepolygon](https://www.php.net/manual/zh/function.imagepolygon.php)— 画一个多边形
- [imagepsbbox](https://www.php.net/manual/zh/function.imagepsbbox.php)— 给出一个使用 PostScript Type1 字体的文本方框
- [imagepsencodefont](https://www.php.net/manual/zh/function.imagepsencodefont.php)— 改变字体中的字符编码矢量
- [imagepsextendfont](https://www.php.net/manual/zh/function.imagepsextendfont.php)— 扩充或精简字体
- [imagepsfreefont](https://www.php.net/manual/zh/function.imagepsfreefont.php)— 释放一个 PostScript Type 1 字体所占用的内存
- [imagepsloadfont](https://www.php.net/manual/zh/function.imagepsloadfont.php)— 从文件中加载一个 PostScript Type 1 字体
- [imagepsslantfont](https://www.php.net/manual/zh/function.imagepsslantfont.php)— 倾斜某字体
- [imagepstext](https://www.php.net/manual/zh/function.imagepstext.php)— 用 PostScript Type1 字体把文本字符串画在图像上
- [imagerectangle](https://www.php.net/manual/zh/function.imagerectangle.php)— 画一个矩形
- [imageresolution](https://www.php.net/manual/zh/function.imageresolution.php)— Get or set the resolution of the image
- [imagerotate](https://www.php.net/manual/zh/function.imagerotate.php)— 用给定角度旋转图像
- [imagesavealpha](https://www.php.net/manual/zh/function.imagesavealpha.php)— 设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)
- [imagescale](https://www.php.net/manual/zh/function.imagescale.php)— Scale an image using the given new width and height
- [imagesetbrush](https://www.php.net/manual/zh/function.imagesetbrush.php)— 设定画线用的画笔图像
- [imagesetclip](https://www.php.net/manual/zh/function.imagesetclip.php)— Set the clipping rectangle
- [imagesetinterpolation](https://www.php.net/manual/zh/function.imagesetinterpolation.php)— Set the interpolation method
- [imagesetpixel](https://www.php.net/manual/zh/function.imagesetpixel.php)— 画一个单一像素
- [imagesetstyle](https://www.php.net/manual/zh/function.imagesetstyle.php)— 设定画线的风格
- [imagesetthickness](https://www.php.net/manual/zh/function.imagesetthickness.php)— 设定画线的宽度
- [imagesettile](https://www.php.net/manual/zh/function.imagesettile.php)— 设定用于填充的贴图
- [imagestring](https://www.php.net/manual/zh/function.imagestring.php)— 水平地画一行字符串
- [imagestringup](https://www.php.net/manual/zh/function.imagestringup.php)— 垂直地画一行字符串
- [imagesx](https://www.php.net/manual/zh/function.imagesx.php)— 取得图像宽度
- [imagesy](https://www.php.net/manual/zh/function.imagesy.php)— 取得图像高度
- [imagetruecolortopalette](https://www.php.net/manual/zh/function.imagetruecolortopalette.php)— 将真彩色图像转换为调色板图像
- [imagettfbbox](https://www.php.net/manual/zh/function.imagettfbbox.php)— 取得使用 TrueType 字体的文本的范围
- [imagettftext](https://www.php.net/manual/zh/function.imagettftext.php)— 用 TrueType 字体向图像写入文本
- [imagetypes](https://www.php.net/manual/zh/function.imagetypes.php)— 返回当前 PHP 版本所支持的图像类型
- [imagewbmp](https://www.php.net/manual/zh/function.imagewbmp.php)— 以 WBMP 格式将图像输出到浏览器或文件
- [imagewebp](https://www.php.net/manual/zh/function.imagewebp.php)— 将 WebP 格式的图像输出到浏览器或文件
- [imagexbm](https://www.php.net/manual/zh/function.imagexbm.php)— 将 XBM 图像输出到浏览器或文件
- [iptcembed](https://www.php.net/manual/zh/function.iptcembed.php)— 将二进制 IPTC 数据嵌入到一幅 JPEG 图像中
- [iptcparse](https://www.php.net/manual/zh/function.iptcparse.php)— 将二进制 IPTC 块解析为单个标记
- [jpeg2wbmp](https://www.php.net/manual/zh/function.jpeg2wbmp.php)— 将 JPEG 图像文件转换为 WBMP 图像文件
- [png2wbmp](https://www.php.net/manual/zh/function.png2wbmp.php)— 将 PNG 图像文件转换为 WBMP 图像文件
- php更新内容
- 其他
- empty、isset、is_null
- echo 输出bool值
- if真假情况
- 常量
- define与const(php5.3) 类常量
- 递归
- 单元测试
- 面向对象
- 全局变量域超全局变量
- php网络相关
- 支持的协议和封装协议(如http,php://input)
- 上下文(Context)选项和参数
- 过滤器
- http请求及模拟登录
- socket
- streams
- swoole
- 超全局变量
- $_ENV :存储了一些系统的环境变量
- $_COOKIE
- $_SESSION
- $_FILES
- $_SERVER
- 正则
- php正则函数
- 去除文本中的html、xml的标签
- 特殊符号
- \r\n
- 模式修正符
- 分组
- 断言
- 条件表达式
- 递归表达式 (?R)
- 固化分组
- 正则例子
- 框架
- 自动加载spl_autoload_register
- 时间函数
- 文件操作
- 文件的上传下载
- 常见的mimi类型
- 文件断点续传
- 下载文件防盗链
- 破解防盗链
- 无限分类
- 短信验证码
- 短信宝
- 视频分段加载
- phpDoc注释
- 流程控制代替语法
- 三元运算
- @错误抑制符
- 字符编码
- PHP CLI模式开发
- 配置可修改范围
- CGI、FastCGI和PHP-FPM关系图解
- No input file specified的解决方法
- SAPI(PHP常见的四种运行模式)
- assert断言
- 类基础
- 类的三大特性:封装,继承,多态
- 魔术方法
- 辅助查询(*)
- extends继承
- abstract 抽象类
- interface 接口(需要implements实现)
- 抽象类和接口的区别
- 多态
- static
- final
- serialize与unserialize
- instanceof 判断后代子类
- 类型约束
- clone克隆
- ::的用法
- new self()与new static()
- this、self、static、parent、super
- self、static、parent:后期静态绑定
- PHP的静态变量
- php导入
- trait
- 动态调用类方法
- 参数及类型申明
- 方法的重载覆盖
- return $a && $b
- 设计思想
- 依赖注入与依赖倒置
- 创建型模式(创建类对象)
- (*)单例模式
- (*)工厂模式
- 原型模式(在方法里克隆this)
- 创建者模式
- 结构型模式
- 适配器模式(Adapter)
- 桥接模式
- 装饰模式
- 组合模式
- 外观模式(门面(Facade)模式)
- 享元模式
- 代理模式
- 行为型模式
- (*)观察者模式
- (*)迭代器模式(Iterator)
- 模板方法模式 Template
- 命令模式(Command)
- 中介者模式(Mediator)
- 状态模式(State)
- 职责链模式 (Chainof Responsibility)
- 策略模式(Strategy)
- 已知模式-备忘录模式(Memento)
- 深度模式-解释器模式(Interpreter)
- 深度模式-访问者模式(Visitor)
- (*)注册树(注射器、注册表)模式
- 函数参考
- 影响 PHP 行为的扩展
- APC扩展(过时)
- APCu扩展
- APD扩展(过时)
- bcompiler扩展(过时)
- BLENC扩展 (代码加密 实验型)
- Componere扩展(7.1+)
- 错误处理扩展(PHP 核心)
- FFI扩展
- htscanner扩展
- inclued扩展
- Memtrack扩展
- OPcache扩展(5.5.0内部集成)
- Output Control扩展(核心)
- PHP Options/Info扩展(核心)
- phpdbg扩展(5.6+内部集成)
- runkit扩展
- runkit7扩展
- scream扩展
- uopz扩展
- Weakref扩展
- WinCache扩展
- Xhprof扩展
- 音频格式操作
- ID3
- KTaglib
- oggvorbis
- OpenAL
- 身份认证服务
- KADM5
- Radius
- 针对命令行的扩展
- Ncurses(暂无人维护)
- Newt(暂无人维护)
- Readline
- 压缩与归档扩展
- Bzip2
- LZF
- Phar
- Rar
- Zip
- Zlib
- 信用卡处理
- 加密扩展
- Crack(停止维护)
- CSPRNG(核心)
- Hash扩展(4.2内置默认开启、7.4核心)
- Mcrypt(7.2移除)
- Mhash(过时)
- OpenSSL(*)
- 密码散列算法(核心)
- Sodium(+)
- 数据库扩展
- 数据库抽象层
- 针对各数据库系统对应的扩展
- 日期与时间相关扩展
- Calendar
- 日期/时间(核心)
- HRTime(*)
- 文件系统相关扩展
- Direct IO
- 目录(核心)
- Fileinfo(内置)
- 文件系统(核心)
- Inotify
- Mimetype(过时)
- Phdfs
- Proctitle
- xattr
- xdiff
- 国际化与字符编码支持
- Enchant
- FriBiDi
- Gender
- Gettext
- iconv(内置默认开启)
- intl
- 多字节字符串(mbstring)
- Pspell
- Recode(将要过时)
- 图像生成和处理
- Cairo
- Exif
- GD(内置)
- Gmagick
- ImageMagick
- 邮件相关扩展
- Cyrus
- IMAP
- Mail(核心)
- Mailparse
- vpopmail(实验性 )
- 数学扩展
- BC Math
- GMP
- Lapack
- Math(核心)
- Statistics
- Trader
- 非文本内容的 MIME 输出
- FDF
- GnuPG
- haru(实验性)
- Ming(实验性)
- wkhtmltox(*)
- PS
- RPM Reader(停止维护)
- RpmInfo
- XLSWriter Excel操作(*)
- 进程控制扩展
- Eio
- Ev
- Expect
- Libevent
- PCNTL
- POSIX
- 程序执行扩展(核心)
- parallel
- pthreads(*)
- pht
- Semaphore
- Shared Memory
- Sync
- 其它基本扩展
- FANN
- GeoIP(*)
- JSON(内置)
- Judy
- Lua
- LuaSandbox
- Misc(核心)
- Parsekit
- SeasLog(-)
- SPL(核心)
- SPL Types(实验性)
- Streams(核心)
- Swoole(*)
- Tidy扩展
- Tokenizer
- URLs(核心)
- V8js(*)
- Yaml
- Yaf
- Yaconf(核心)
- Taint(检测xss字符串等)
- Data Structures
- 其它服务
- 网络(核心)
- cURL(*)
- Event(*)
- chdb
- FAM
- FTP
- Gearman
- Gopher
- Gupnp
- Hyperwave API(过时)
- LDAP(+)
- Memcache
- Memcached(+)
- mqseries
- RRD
- SAM
- ScoutAPM
- SNMP
- Sockets
- SSH2
- Stomp
- SVM
- SVN(试验性的)
- TCP扩展
- Varnish
- YAZ
- YP/NIS
- 0MQ(ZeroMQ、ZMQ)消息系统
- ZooKeeper
- 搜索引擎扩展
- mnoGoSearch
- Solr
- Sphinx
- Swish(实验性)
- 针对服务器的扩展
- Apache
- FastCGI 进程管理器
- IIS
- NSAPI
- Session 扩展
- Msession
- Sessions
- Session PgSQL
- 文本处理
- BBCode
- CommonMark(markdown解析)
- Parle
- PCRE( 核心)
- POSIX Regex
- ssdeep
- 字符串(核心)
- 变量与类型相关扩展
- 数组(核心)
- 类/对象(核心)
- Classkit(未维护)
- Ctype
- Filter扩展
- 函数处理(核心)
- quickhash扩展
- 反射扩展(核心)
- Variable handling(核心)
- Web 服务
- OAuth
- SCA(实验性)
- SOAP
- Yar
- XML-RPC(实验性)
- Windows 专用扩展
- COM
- win32ps
- win32service
- XML 操作
- DOM(内置,默认开启)
- libxml(内置 默认开启)
- SDO(停止维护)
- SDO-DAS-Relational(试验性的)
- SDO DAS XML
- SimpleXML(内置,5.12+默认开启)
- WDDX
- XMLDiff
- XML 解析器(Expat 解析器 默认开启)
- XMLReader(5.1+内置默认开启)
- XMLWriter(5.1+内置默认开启)
- XSL(内置)
- 图形用户界面(GUI) 扩展
- UI
- 预定义类
- PHP SPL(PHP 标准库)
- 数据结构
- SplDoublyLinkedList(双向链表)
- SplStack(栈 先进后出)
- SplQueue(队列)
- SplHeap(堆)
- SplMaxHeap(最大堆)
- SplMinHeap(最小堆)
- SplPriorityQueue(堆之优先队列)
- SplFixedArray(阵列【数组】)
- SplObjectStorage(映射【对象存储】)
- 迭代器
- DirectoryIterator类
- 文件处理
- SplFileInfo
- SplFileObject
- SplTempFileObject
- 接口 interface
- Countable
- OuterIterator
- RecursiveIterator
- SeekableIterator
- 异常
- 各种类及接口
- SplSubject
- SplObserver
- ArrayObject(将数组作为对象操作)
- SPL 函数
- 预定义接口
- Traversable(遍历)接口
- Iterator(迭代器)接口
- IteratorAggregate(聚合式迭代器)接口
- ArrayAccess(数组式访问)接口
- Serializable 序列化接口
- JsonSerializable
- Closure 匿名函数(闭包)类
- Generator生成器类
- 生成器(php5.5+)
- 反射
- 一、反射(reflection)类
- 二、Reflector 接口
- ReflectionClass 类报告了一个类的有关信息。
- ReflectionFunctionAbstract
- ReflectionParameter 获取函数或方法参数的相关信息
- ReflectionProperty 类报告了类的属性的相关信息。
- ReflectionClassConstant类报告有关类常量的信息。
- ReflectionZendExtension 类返回Zend扩展相关信息
- ReflectionExtension 报告了一个扩展(extension)的有关信息。
- 三、ReflectionGenerator类用于获取生成器的信息
- 四、ReflectionType 类用于获取函数、类方法的参数或者返回值的类型。
- 五、反射的应用场景
- git
- Git代码同时上传到GitHub和Gitee(码云)
- Git - 多人协同开发利器,团队协作流程规范与注意事项
- 删除远程仓库的文件
- 创建composer项目
- composer安装及设置
- composer自动加载讲解
- phpsdudy的composer操作
- swoole笔记
- 安装及常用Cli操作
- TCP
- 4种回调函数的写法
- phpRedis
- API
- API详细
- redis DB 概念:
- 通用命令:rawCommand
- Connection
- Server
- List
- Set
- Zset
- Hash
- string
- Keys
- 事物
- 发布订阅
- 流streams
- Geocoding 地理位置
- lua脚本
- Introspection 自我检测
- biMap
- 原生
- php-redis 操作类 封装
- redis 队列解决秒杀解决超卖:
- Linux
- Centos8(Liunx) 中安装PHP7.4 的三种方法和删除它的三种方法
- 权限设计
- ACL
- RBAC
- RBAC0
- RBAC1
- RBAC2
- RBAC3
- 例子
- ABAC 基于属性的访问控制
- 总结:SAAS后台权限设计案例分析
- casbin-权限管理框架
- 开始使用
- casbinAPI
- Think-Casbin
- 单点登录(SSO)
- OAuth授权
- OAuth 2.0 的四种方式
- 更新令牌
- 例子:第三方登录
- 微服务架构下的统一身份认证和授权
- 杂项
- SSL证书
- sublime Emmet的快捷语法
- 免费翻译接口
- 免费空间
- xss过滤
- HTML Purifier文档
- xss例子
- 实用小函数
- PHP操作Excel
- 架构师必须知道的26项PHP安全实践
- 模版布局
- smarty模版
- blade
- twig
- 大佬博客
- 优化
- 缓存
- opcache
- memcache
- 数据库
- 主从分布
- 数据库设计
- 笔记
- 配置
- nginx 主从配置
- nginx 负载均衡的配置
- 手动搭建Redis集群和MySQL主从同步(非Docker)
- Redis Cluster集群
- mysql主从同步
- 用安卓手机搭建 web 服务器
- 软件选择
- 扩展库列表
- 代码审计
- 漏洞挖掘的思路
- 命令注入
- 代码注入
- XSS 反射型漏洞
- XSS 存储型漏洞
- 本地包含与远程包含
- sql注入
- 函数
- 注释
- 步骤
- information_schema
- sql注入的分类
- 实战
- 防御
- CSRF 跨站请求伪造
- 计动态函数执行与匿名函数执行
- unserialize反序列化漏洞
- 覆盖变量漏洞
- 文件管理漏洞
- 文件上传漏洞
- 跳过登录
- URL编码对照表
- 浏览器插件开发
- 插件推荐
- 扩展文件manifest.json
- 不可视的background(常驻)页面
- 可视页面browser actions与page actions及八种展示方式
- 使用chrome.xxx API
- Google Chrome扩展与Web页面/服务器之间的交互
- Google Chrome扩展中的页面之间的数据通信
- inject-script
- chromeAPI
- pageAction
- alarms
- chrome.tabs
- chrome.runtime
- chrome.webRequest
- chrome.window
- chrome.storage
- chrome.contextMenus
- chrome.devtools
- chrome.extension
- 分类
- homepage_url 开发者或者插件主页
- 5种类型的JS对比及消息通信
- 其它补充
- 前端、移动端
- html5
- meta标签
- flex布局
- javascript
- 获取js对象所有方法
- dom加载
- ES6函数写法
- ES6中如何导入和导出模块
- 数组的 交集 差集 补集 并集
- bootstrap
- class速查
- 常见data属性
- 开源项目
- 会员 数据库表设计
- 程序执行
- 开发总结
- API接口
- API接口设计
- json转化
- app接口
