首页 > 代码库 > file size php
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="http://www.mamicode.com/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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。