实例说明:<?php chgrp("test.txt","admin") ?>标签含义:chgrp: 函数改变指定文件的用户组。如果成功则返回 TRUE,如果失败则返回 FALSE。file:必需。规定要检查的文件。group:可选。规定新的组...
实例说明:<?php $path = "/testweb/home.php"; //Show filename with file extension echo basename($path) ."<br/>"; //Show fil...
实例说明:<?php $size = 300; $image=imagecreatetruecolor($size, $size); // 用白色背景加黑色边框画个方框 $back = imagecolorallocate($image, 255, 255, 255); $borde...
实例说明:<?php header("Content-type: image/png"); $im = @imagecreate(100, 50) or die("不能初始化新的 GD 图像流"); $background_color =...
实例说明:<?php // 使用抗锯齿图片和一个普通图片 $aa = imagecreatetruecolor(400, 100); $normal = imagecreatetruecolor(200, 100); // 使用抗锯齿功能 imageantialias($aa, t...
实例说明:<?php $img = imagecreatetruecolor(200, 200);// 创建一个 200*200 图片 $white = imagecolorallocate($img, 255, 255, 255); // 颜色 // 画椭圆弧 imagea...
实例说明:<?php $file = 'php.jpg'; $image = imagecreatefrompng($file); header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP));...
实例说明:<?php // 创建图像实例 $im = imagecreatetruecolor(100, 100); // 保存图像 png 格式 imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PN...
实例说明:<?php $img = 'runoob-logo.png'; // 以文件方式打开 $size_info1 = getimagesize($img); // 以字符串格式打开 $data = file_get_contents($img); $size_...
实例说明:<?php list($width, $height, $type, $attr) = getimagesize("runoob-logo.png"); echo "宽度为:" . $width; echo "高度为:"...