programing

모든 이미지를 php 폴더에서 가져옵니다.

codeshow 2023. 4. 2. 11:42
반응형

모든 이미지를 php 폴더에서 가져옵니다.

워드프레스를 사용하고 있습니다.다음과 같은 이미지 폴더가 있습니다.mytheme/images/myimages.

폴더에서 모든 이미지 이름을 가져오고 싶다myimages

이미지명은 어떻게 하면 얻을 수 있는지 알려주세요.

이거 먹어봐

$directory = "mytheme/images/myimages";
$images = glob($directory . "/*.jpg");

foreach($images as $image)
{
  echo $image;
}

PHP로 간단하게 할 수 있습니다.opendir기능.

예:

$handle = opendir(dirname(realpath(__FILE__)).'/pictures/');
while($file = readdir($handle)){
  if($file !== '.' && $file !== '..'){
    echo '<img src="pictures/'.$file.'" border="0" />';
  }
}

폴더에서 모든 이미지를 가져오려면 다음을 사용하십시오.glob()모든 이미지를 얻을 수 있는 기능을 내장하고 있습니다.다만, 그 후에, 모든 것이 유효한지를 확인할 필요가 있기 때문에, 이 경우는 이 코드가 도움이 됩니다.이 코드는 또한 이미지인지 확인합니다.

  $all_files = glob("mytheme/images/myimages/*.*");
  for ($i=0; $i<count($all_files); $i++)
    {
      $image_name = $all_files[$i];
      $supported_format = array('gif','jpg','jpeg','png');
      $ext = strtolower(pathinfo($image_name, PATHINFO_EXTENSION));
      if (in_array($ext, $supported_format))
          {
            echo '<img src="'.$image_name .'" alt="'.$image_name.'" />'."<br /><br />";
          } else {
              continue;
          }
    }

이미지 유형을 확인하지 않으려면 이 코드를 사용할 수도 있습니다.

 $all_files = glob("mytheme/images/myimages/*.*");
 for ($i=0; $i<count($all_files); $i++)
 {
  $image_name = $all_files[$i];
  echo '<img src="'.$image_name .'" alt="'.$image_name.'" />'."<br /><br />";
 }

자세한 정보는

PHP 매뉴얼

여기 몇 가지 코드가 있습니다.

$dir          = '/Images';
$ImagesA = Get_ImagesToFolder($dir);
print_r($ImagesA);

function Get_ImagesToFolder($dir){
    $ImagesArray = [];
    $file_display = [ 'jpg', 'jpeg', 'png', 'gif' ];

    if (file_exists($dir) == false) {
        return ["Directory \'', $dir, '\' not found!"];
    } 
    else {
        $dir_contents = scandir($dir);
        foreach ($dir_contents as $file) {
            $file_type = pathinfo($file, PATHINFO_EXTENSION);
            if (in_array($file_type, $file_display) == true) {
                $ImagesArray[] = $file;
            }
        }
        return $ImagesArray;
    }
}

다음 답변은 WordPress 전용입니다.

$base_dir = trailingslashit( get_stylesheet_directory() );
$base_url = trailingslashit( get_stylesheet_directory_uri() );

$media_dir = $base_dir . 'yourfolder/images/';
$media_url = $hase_url . 'yourfolder/images/';

$image_paths = glob( $media_dir . '*.jpg' );
$image_names = array();
$image_urls = array();

foreach ( $image_paths as $image ) {
    $image_names[] = str_replace( $media_dir, '', $image );
    $image_urls[] = str_replace( $media_dir, $media_url, $image );
}

// --- You now have:

// $image_paths ... list of absolute file paths 
// e.g. /path/to/wordpress/wp-content/uploads/yourfolder/images/sample.jpg

// $image_urls ... list of absolute file URLs 
// e.g. http://example.com/wp-content/uploads/yourfolder/images/sample.jpg

// $image_names ... list of filenames only
// e.g. sample.jpg

다음은 하위 테마 이외의 다른 위치에서 이미지를 제공하는 몇 가지 다른 설정입니다.위의 코드의 첫 번째 두 줄을 필요한 버전으로 바꾸기만 하면 됩니다.

Uploads 디렉토리에서:

// e.g. /path/to/wordpress/wp-content/uploads/yourfolder/images/sample.jpg
$upload_path = wp_upload_dir();
$base_dir = trailingslashit( $upload_path['basedir'] );
$base_url = trailingslashit( $upload_path['baseurl'] );

부모 테마에서

// e.g. /path/to/wordpress/wp-content/themes/parent-theme/yourfolder/images/sample.jpg
$base_dir = trailingslashit( get_template_directory() );
$base_url = trailingslashit( get_template_directory_uri() );

차일드 테마에서

// e.g. /path/to/wordpress/wp-content/themes/child-theme/yourfolder/images/sample.jpg
$base_dir = trailingslashit( get_stylesheet_directory() );
$base_url = trailingslashit( get_stylesheet_directory_uri() );
$dir = "mytheme/images/myimages";
$dh  = opendir($dir);
while (false !== ($filename = readdir($dh))) {
    $files[] = $filename;
}
$images=preg_grep ('/\.jpg$/i', $files);

필요한 디렉토리만 스캔하기 때문에 매우 빠릅니다.

//path to the directory to search/scan
        $directory = "";
         //echo "$directory"
        //get all files in a directory. If any specific extension needed just have to put the .extension
        //$local = glob($directory . "*"); 
        $local = glob("" . $directory . "{*.jpg,*.gif,*.png}", GLOB_BRACE);
        //print each file name
        echo "<ul>";

        foreach($local as $item)
        {
        echo '<li><a href="'.$item.'">'.$item.'</a></li>';
        }

        echo "</ul>";

존재하는 것을 확인하고, 모든 파일을 배열에 배치하고, 모든 JPG 파일을 준비하고, 새로운 어레이를 에코합니다.모든 이미지에 대해 다음을 시도할 수 있습니다.

$images=preg_grep('/\.(jpg|jpeg|png|gif)(?:[\?\#].*)?$/i', $files);


if ($handle = opendir('/path/to/folder')) {

    while (false !== ($entry = readdir($handle))) {
        $files[] = $entry;
    }
    $images=preg_grep('/\.jpg$/i', $files);

    foreach($images as $image)
    {
    echo $image;
    }
    closedir($handle);
}
    <?php
   $galleryDir = 'gallery/';
   foreach(glob("$galleryDir{*.jpg,*.gif,*.png,*.tif,*.jpeg}", GLOB_BRACE) as $photo)
   {echo "<a  href=\"$photo\">\n" ;echo "<img style=\"padding:7px\" class=\"uk-card uk-card-default uk-card-hover uk-card-body\" src=\"$photo\">"; echo "</a>";}?>

UIkit php 폴더 갤러리 https://webshelf.eu/en/php-folder-gallery/

get all the images from a folder in php without database


$url='https://demo.com/Images/sliderimages/';
       $dir = "Images/sliderimages/";
        $file_display = array(
            'jpg',
            'jpeg',
            'png',
            'gif'
        );
        
        $data=array();
        
        if (file_exists($dir) == false) {
            $rss[]=array('imagePathName' =>"Directory  '$dir'  not found!");
            $msg=array('error'=>1,'images'=>$rss);
             echo json_encode($msg);
        } else {
            $dir_contents = scandir($dir);
        
            foreach ($dir_contents as $file) {
                @$file_type = strtolower(end(explode('.', $file)));
                // $file_type1 = pathinfo($file);
                // $file_type= $file_type1['extension'];
                
                if ($file !== '.' && $file !== '..' && in_array($file_type, $file_display) == true) {
                   $data[]=array('imageName'=>$url.$file);
               
                   
                }
            }
            if(!empty($data)){
                $msg=array('error'=>0,'images'=>$data);
                echo json_encode($msg);
            }else{
                $rees[]=array('imagePathName' => 'No Image Found!');
                $msg=array('error'=>2,'images'=>$rees);
                echo json_encode($msg);
            }
        }
// Store your file destination to a variable
$fileDirectory = "folder1/folder2/../imagefolder/";
// glob function will create a array of all provided file type form the specified directory
$imagesFiles = glob($fileDirectory."*.{jpg,jpeg,png,gif,svg,bmp,webp}",GLOB_BRACE);
// Use your favorite loop to display
foreach($imagesFiles as $image) {
    echo '<img src="'.$image.'" /><br />';
}

실제 이미지 디렉토리를 표시하기만 하면 됩니다(보안성이 낮음).두 줄의 코드만.

 $dir = base_url()."photos/";

echo"<a href=".$dir.">Photo Directory</a>";

언급URL : https://stackoverflow.com/questions/17122218/get-all-the-images-from-a-folder-in-php

반응형