$filename = '/data/webroot/usercode/resource/test.txt'; 这是什么意思?
2016-04-21
$img=imagecreatetruecolor(100, 100);//建立长、宽100图像(默认为黑色)
$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);//(建立的图像,颜色,颜色,颜色)用来匹配图型颜色
imagefill($img, 0, 0, $red);//imagefill(建立图像,x,y,填充的颜色) x=0,y=0表示坐标
imagepng($img);//imagepng(),以 PNG 格式将图像输出到浏览器或文件,可以改变格式
imagedestroy($img);//imagedestroy()销毁图片
$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);//(建立的图像,颜色,颜色,颜色)用来匹配图型颜色
imagefill($img, 0, 0, $red);//imagefill(建立图像,x,y,填充的颜色) x=0,y=0表示坐标
imagepng($img);//imagepng(),以 PNG 格式将图像输出到浏览器或文件,可以改变格式
imagedestroy($img);//imagedestroy()销毁图片
2016-04-20
class Car{
public $name = "大众";
function say(){
echo "嘀嘀~";
}
}
$dazhongCar = new Car();
echo $dazhongCar->name."在".$dazhongCar->say();
//输出结果为:嘀嘀~大众在
//求解!!
public $name = "大众";
function say(){
echo "嘀嘀~";
}
}
$dazhongCar = new Car();
echo $dazhongCar->name."在".$dazhongCar->say();
//输出结果为:嘀嘀~大众在
//求解!!
2016-04-19
echo '创建时间:'.filectime($filename).'<br>';
echo '修改时间:'.date('Y-m-d H:i:s',filemtime($filename)).'<br>';
echo '最后访问时间:'.date('Y-m-d H:i:s',fileatime($filename)).'<br>';
//给$mtime赋值为文件的修改时间
$mtime = filemtime($filename);
echo '修改时间:'.date('Y-m-d H:i:s',filemtime($filename)).'<br>';
echo '最后访问时间:'.date('Y-m-d H:i:s',fileatime($filename)).'<br>';
//给$mtime赋值为文件的修改时间
$mtime = filemtime($filename);
2016-04-18