用在服务器上提供下载的php代码,可以指定被下载的文件名,可以动态指定文件内容 // local file that should be send to the client $l…
php计算连接的mysql数据库的大小,用MB,KB或者GB的格式返回 function CalcFullDatabaseSize($database, $db) { $table…
通过php的 similar_text函数比较两个字符串的相似性 $word2compare = "stupid"; $words = array( 'stup…
这个php函数可以把指定的颜色变得更深一些 function ColorDarken($color, $dif=20){ $color = str_replace('#', '',…
<?php class emp { var $name; var $address; var $dept; function assign_info($n,$a,$d) { …
/* ** Connect to database: */ // Connect to the database (host, username, password) $con =…
<?php $limit = array( //gb2312 拼音排序 array(45217,45252), //A array(45253,45760), //B arr…
<?php $old = 'C:\tmp\someold.txt'; $new = 'C:\tmp\somenew.txt'; copy($old,$new) or die(…
unction downloadFile($file){ $file_name = $file; $mime = 'application/force-download'; hea…
<?php ##################### //CONFIGURATIONS ##################### // Define the name o…
<?php $dir = "PUT_PATH_TO_DIR_HERE"; // Open a known directory, and proceed t…
<?php function dirSize($directoty){ $dir_size=0; if($dir_handle=@opendir($directoty)) {…