目前分類:「php」的相關文章
瀏覽方式: 摘要列表 | 標題列表
2017011614:26
現在時間 echo date ('Y-m-d H:i:s'); //2017-01-19 12:17:07 目前時間 加 1 天 echo date("Y-m-d" , mktime(0,0,0,date("m"),date("d")+1,date("Y")) ); //2017-01-20 目前時間 加 1 個月 echo date("Y-m-d" , mktime(0,0,0,date("m")+1,date("d"),date("Y")) ); //2017-02-19 目前時間 加 30...
2009090221:23
PHP 顯示 TrueType 字型 須有 GD library 及 freetype 範例: <?php header("Content-type: image/jpeg"); $im = imagecreate(450,200); $white = imagecolorallocate($im, 255,255,255); $black = imagecolorallocate($im, 0,0,0); $red = imagecolorallocate($im, 255, 0,0); imagettftext($im, 9, 0, 10, 20, $black, "/home/data/wq...