实例说明:<?php echo disk_free_space("C:"); ?>标签含义:disk_free_space:函数返回指定目录的可用空间,以字节为单位。directory:必需,规定要检查的目录源代码运行结果如下:109693288448...
实例说明:<?php echo dirname("c:/testweb/home.php") . "<br />"; echo dirname("/testweb/home.php"); ?>标签含义:dirn...
实例说明:<?php echo copy("source.txt","target.txt"); ?>标签含义:copy:函数复制文件。该函数如果成功则返回 TRUE,如果失败则返回 FALSE源代码运行结果如下:1...
实例说明:<?php //check filesize echo filesize("test.txt"); echo "<br />"; $file = fopen("test.txt", "a+&qu...
实例说明:<?php chown("test.txt","charles") ?>标签含义:chown:函数改变指定文件的所有者。如果成功则返回 TRUE,如果失败则返回 FALSE。file:必需。规定要检查的文件。owner:必需。规定新的...
实例说明:<?php // Read and write for owner, nothing for everybody else chmod("test.txt",0600); // Read and write for owner, read for every...
实例说明:<?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 =...