php將資料庫中的電話號碼讀取出來並產生圖片

來源:互聯網
上載者:User

以下是代碼: 複製代碼 代碼如下:<?php //前面不要有空行
$id=$_GET[id];
include("admin/config.php");
$sql="select * from user where id=$id";
$data=mysql_fetch_array(mysql_query($sql));
$p=SBC_DBC($data[Phone],1);
function get_str($str,$strlen=16) {
$str=stripslashes($str);
for($i=0;$i<$strlen;$i++)
if(ord(substr($str,$i,1))>0xa0) $j++;
if($j%2!=0) $strlen++;
$tmp_str=substr($str,0,$strlen);
return $tmp_str;
}
if($p<>''){
//產生5位的數字圖片
Header("Content-type:image/png"); //告訴瀏覽器,下面的資料是圖片,而不要按文字顯示

//定義圖片寬高
$nwidth=120;
$nheight=25;
$im=@imagecreate($nwidth,$nheight) or die("Can't initialize new GD image stream"); //建立圖象

//圖片色彩設定
$background_color=imagecolorallocate($im,255,255,255); //匹配顏色
$text_color=imagecolorallocate($im,23,14,91);

//繪製圖片邊框
imagefilledrectangle($im,0,0,$nwidth-1,$nheight-1,$background); //矩形地區著色
imagerectangle($im,0,0,$nwidth-1,$nheight-1,$background_color); //繪製矩形

//srand((double)microtime()*1000000); //取得目前時間的百萬分之一秒值,以執行時的百萬分之一秒當亂數種子
//$randval=rand();
$randval=$p; //5位元
imagestring($im,8,10,2,$randval,$text_color); //繪製橫式字串

//加入幹擾因素
//for($i=0;$i<478;$i++)
//{
//$randcolor=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
//imagesetpixel($im,rand()%100,rand()%30,$randcolor); //點
//}
//imagestring($im,3,5,5,"A Simple Text String",$text_color);
//imageinterlace($im,1);
imagepng($im); //建立png圖型
imagedestroy($im); //結束圖型

}else{
echo "<font size=2>商家未輸入電話號碼</font>";
}

?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.