MENU

分类 PHP 下的文章

Composer --PHP类扩展包

简介

Composer 是 PHP 的一个依赖管理工具。它允许你申明项目所依赖的代码库,它会在你的项目中为你安装他们。Composer是PHP类扩展包,类似Node.js中的npm。
14-1

阅读全文

PHP之验证码篇

几个关键的函数

  1. 新建一个真彩色图像-> resource imagecreatetruecolor ( int $width , int $height )
  2. 为一幅图像分配颜色-> int imagecolorallocate ( resource $image , int $red , int $green , int $blue )
  3. 区域填充-> bool imagefill ( resource $image , int $x , int $y , int $color )
  4. 画一个单一像素-> bool imagesetpixel ( resource $image , int $x , int $y , int $color )
  5. 画一条线段-> bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )
  6. 画一个单一像素-> bool imagesetpixel ( resource $image , int $x , int $y , int $color )

阅读全文