❶ 伺服器的圖片是16進制的php怎麼讀取出來在本地顯示
//第一種直接寫入文件
$fp2=@fopen($filepath.$filename,'w');
fwrite($fp2,$img);
fclose($fp2);
第二種用file_put_contents()
都能將圖片保存到本地的路徑中
❷ 奼傚備綍鐢╬hp璇誨彇鎸囧畾鏂囦歡澶逛腑鐨勬墍鏈夊浘鐗囷紝鍦ㄧ綉欏典笂鍒嗛〉鏄劇ず錛
$path = '/home/www/img/aa';
function getfiles($path){
if(!is_dir($path)) return;
$handle = opendir($path);
$files = array();
while(false !== ($file = readdir($handle))){
if($file != '.' && $file!='..'){
$path2= $path.'/'.$file;
if(is_dir($path2)){
getfiles($path2);
}else{
if(preg_match("/\.(gif|jpeg|jpg|png|bmp)$/i", $file)){
$files[] = $path.'/'.$file;
}
}
}
}
return $files;
}
❸ 怎麼用php讀取圖片並輸出源碼
file_get_contents($pic)就能獲得二進制碼
❹ php怎麼獲取文件夾內的所有圖片並且顯示出來
<?php
$dir = "./images/"; //要獲取的目錄
echo "********** 獲取目錄下所有文件和文件夾 ***********<hr/>";
//先判斷指定的路徑是不是一個文件夾
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh))!= false){
//文件名的全路徑 包含文件名
$filePath = $dir.$file;
echo "<img src='".$filePath."'/>";
}
closedir($dh);
}
}
?>
❺ php讀取文件夾下面的圖片,返回json數據。
<?php
$result=[];
$folder="images";
$opendir=opendir($folder);
while(($image=readdir($opendir))!==false){
if(
($pos=stripos($image,".jpeg"))!==falseor
($pos=stripos($image,".png"))!==falseor
($pos=stripos($image,".jpg"))!==false
){
$filename=substr($image,0,$pos);
$result[$filename]='http://localhost/php/dir/images/'.$image;
}
}
$json=json_encode($result);
var_mp($json);
?>
伺服器圖片地址自己更改下 望採納~
❻ PHP怎麼讀取php所在文件夾下的圖片和mp3文件,並且顯示出來
<?php
$dir="./";//要獲取的目錄
echo"**********獲取目錄下所有文件和文件夾***********<hr/>";
//先判斷指定的路徑是不是一個文件夾
if(is_dir($dir)){
if($dh=opendir($dir)){
while(($file=readdir($dh))!=false){
if(getFileType($file)=="mp3"){
echo"mp3格式";
}
if(getFileType($file)=="jpg"||getFileType($file)=="png"||getFileType($file)=="gif"){
echo"圖片格式";
}
closedir($dh);
}
}
functiongetFileType($filename){
returnstrtolower(pathinfo($filename)['extension']);
}
?>
❼ php 怎麼讀取一張網路圖片 並輸出給瀏覽器,
<?php
header('content-type:image/png');
echofile_get_contents($imgurl);
?>
❽ php璇誨彇MYSQL鏁版嵁搴撲腑鐨刲ongblob瀛楁碉紙鍥劇墖錛夊苟杈撳嚭鍒版祻瑙堝櫒絝銆
瑕佸仛涓哄浘鐗囪緭鍑洪渶瑕佽劇疆header灝卞彲浠ヤ簡錛屽湪涓婁紶鍥劇墖鐨勬椂鍊欐渶濂借板綍涓涓嬪浘鐗囩被鍨嬶紝澶у皬銆
<?php
//浠庢暟鎹搴撹伙紝榪欓噷灝變笉鍏蜂綋鍐欎簡
$row=DataClass::query("select*fromimageswhereid=$id");
header('Content-type:'.$row['type']);
header('Content-Length:'.$row['size']);
header("Content-Transfer-Encoding:binary");
ob_clean();//闃叉php灝唘tf8鐨刡om澶磋緭鍑
echo$row['content'];//鐩存帴杈撳嚭longblob瀛楁電殑鍐呭
❾ 如何通過PHP獲取一下本地目錄下的所有圖片,並在網頁上分行頁的顯示出來,希望有類似代碼的分享下,謝謝
$dir = opendir('uploads');
//列出目錄中的文件
while (($file = readdir($dir)) !== false)
{
if(is_dir($file)==false)
{
$liebie = explode('.',$file);
if(count($liebie)>=2)
{
if ((strtolower($liebie[1])=='jpg')||(strtolower($liebie[1])=='gif'))
{
if ($num%3==0)
{
$list=$list.'</tr>';
}
$list=$list.'<td><img src="/uploads/'.$file.'" height="100" width="100"/><a href="/uploads/'.$file.'" onClick="ToClipboard(this.href)">復制<a></td>';
$num=$num+1;
}
}
}
}
closedir($dir);
$data['list']= "<table width='100%'><tr>".$list."</tr></table>";