- $query="select count(ip) as count_ip from tb_count04 ";
- // の IP 訪問数の合計をクエリしますデータベース
- $result=mysql_query($query);
- $countes=mysql_result($result,0,'count_ip');
-
- //GD2 関数を通じてキャンバスを作成
- $im=imagecreate(240,24);
- $ grey= imagecolorallocate($im,200,200,200);
- $color =imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255)); //フォントの色を定義します
- //漢字を出力します
- $text= iconv( "gb2312","utf-8","IP の数を数える:");
- //指定された中国語文字列を変換します
- $font = "fonts/FZHCJW.TTF";
- imagettftext($im,14, 0,20,18,$color,$font,$text); //中国語を出力
- //ウェブサイトへの訪問数を出力
- imagestring($im,5,160,5,$countes,$color);
- imagepng ($im );
- imagedestroy($im);
- ?>
コードをコピー
|