file size php
Posted sky20080101
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file size php相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> New Document </title> <meta charset="GBK"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> </head> <body> <form method="get" action="fileSize.php"> <input type="text" name="file"> <br> <input type="submit" value="submit"> </form> </body> </html>
<?php function GetFileSize($file) { if (file_exists($file)) { return filesize($file); } else { return -1; } } if(isset($_GET["file"])) { header("Content-type: text/plain; charset=gbk"); $file=$_GET["file"]; $a = GetFileSize($file); print_r($a); return; } else { echo -1; } ?>
以上是关于file size php的主要内容,如果未能解决你的问题,请参考以下文章