1

こんにちは、私のコードで完全にキャッシュされたサムネイルとメイン画像のパスを取得しましたが、相対*画像*の完全にキャッシュされたパスも取得したいですいくつかのアイデアを提案してください

  <?php
@ob_start();
@session_start();
ini_set('display_errors', 1);
//for order update
include '../../../../app/Mage.php';
Mage::app('default');
echo '<pre>';
if(isset($_REQUEST['productid'])){
$productId = $_REQUEST['productid'];
}else{

$productId = '12402'; // product ID 10 is an actual product, and used here for a test
}
$product = Mage::getModel('catalog/product')->load($productId);  //load the product     
echo 'product_id '.'=>'.$product->getId().'<br/>';                                        

echo 'created_at '.'=>'.$product->getcreated_at().'<br/>';   
echo 'description '.'=>'.$product->getdescription().'<br/>'; 
echo 'short_description '.'=>'.$product->getshort_description().'<br/>'; 
echo 'sku'.'=>'.$product->getsku().'<br/>'; 
 'media_gallery'.'=>'.$product->getmedia_gallery().'<br/>'; 
print_r($product->getmedia_gallery());
?>
<?php 
$image = Mage::helper('catalog/image')->init($product, 'image');
$image1 = str_replace('/webApps/migration/productapi/new/','/',$image);
//echo '<img id="image" src="'.$image1.'"  />';
echo 'image => '.$image1.'<br/>';


$thumbnail = Mage::helper('catalog/image')->init($product, 'thumbnail');
$thumbnail1 = str_replace('/webApps/migration/productapi/new/','/',$thumbnail);
echo 'thumbnail => '.$thumbnail1.'<br/>';
?> 
4

2 に答える 2

1

*このコード* 製品の相対*画像*フルパスを取得しました

 <?php
    @ob_start();
    @session_start();
    ini_set('display_errors', 1);
    //for order update
    include '../../../../app/Mage.php';
    Mage::app('default');
    echo '<pre>';
    if(isset($_REQUEST['productid'])){
    $productId = $_REQUEST['productid'];
    }else{

    $productId = '12402'; // product ID 10 is an actual product, and used here for a test
    }
    $product = Mage::getModel('catalog/product')->load($productId);  //load the product     
    echo 'product_id '.'=>'.$product->getId().'<br/>';                                        

    echo 'created_at '.'=>'.$product->getcreated_at().'<br/>';   
    echo 'description '.'=>'.$product->getdescription().'<br/>'; 
    echo 'short_description '.'=>'.$product->getshort_description().'<br/>'; 
    echo 'sku'.'=>'.$product->getsku().'<br/>'; 

     if (count($product->getMediaGalleryImages()) > 0){
          foreach ($product->getMediaGalleryImages() as $_image){
              $thumbnail12 = Mage::helper('catalog/image')->init($product->getProduct(), 'image', $_image->getFile())->resize(2000);
              $thumbnail13 = str_replace('/webApps/migration/productapi/new/','/',$thumbnail12);
              echo 'thumbnail => '.$thumbnail13.'<br/>';
               }
                            }

    ?>
于 2013-01-08T06:18:12.797 に答える