2011-01-28 6 views
1

Google Base로 제품을 내보내는 스크립트를 작성 중입니다. 문제는 in stock"in stock"으로 출력되고 Google에서 인식하지 못하는 것입니다. 따옴표 없이만 인식합니다. 거기에 따옴표를 포함하지 않고 이것을 수행하는 방법을 모르겠습니다.fputcsv 따옴표 붙이지 않아야하는 곳

     $row = array(
          'new', 
          $product->getSku().'-'.$vehicle->getId(), 
          'https://www.domain.com/vehicles/'.str_replace(' ', '-', $make->getName()).'/'.str_replace(' ', '-', $model->getName()).'/'.$year.'/'.$product->getId(), 
          $this->tru->config->get('root.cdn.url').'-products/'.$product->getPicture(), 
          $product->getSellPrice(), 
          $title, 
          $year, 
          'in stock', 
          $product->getFCCID(), 
          'Visa,Mastercard,Discover,AmericanExpress', 
          'US::Ground:4.95,CA::Ground:28.95', 
          'small', 
          'Vehicles & Parts > Automotive Locking Systems > Remote Keyless Systems' 
         ); 

         fputcsv($output, $row, $seperatorValue); 
+0

이 무엇이다하는 데 도움이 $ seperatorValue 값은 무엇입니까? 또한 $ row 배열에서 작은 따옴표 대신 큰 따옴표를 사용하면 어떻게됩니까? –

+0

$ seperatorValue = chr (9); - 큰 따옴표를 벗어났습니다 – Webnet

+0

? chr (9)는이 공간이 아닙니까? echo "Char : |".chr (9). "| \ n"; –

답변

0

난 당신이 fputcsv() 코드의 다음 줄에

뭔가를 사용하지 않고 자신의 함수를 작성하면 더 나은 생각

$output = fopen("path/to/your/file.csv", "a+"); 

$line = join(',', $row); 

fwrite($output, $line); 

fclose($output); 

희망이