php GD的使用

日期:2022-03-23 15:12:14 作者:磊落不羁 栏目:基本语法 评论(0)
以下是学习的一段基础性知识代码 内容包含了GD常用的几个函数以及用法<?php header('Content-type:image/png'); //用于向浏览器输出图片的指示 $res=imagecreatetruecolor(500,600);  //创建画布 $red=imagecolorallocate($res,255,0,0); //设置颜色 $green=imagecolorallocate($res,0,255,0); $blue=imagecolorallocate($res,0,0,255)...

PHP连接MySQL数据库的mysql

日期:2021-06-16 20:10:03 作者:磊落不羁 栏目:基本语法 评论(0)
<?php $mysql_conf = array(     "host"    => "127.0.0.1:3306",      "db"      => "test",      "db_user&...