Dos \ Windows ile metin dosyalarını kodlamak ve PHP UTF-8 olarak kodlanmış

0 Cevap php

Im Dos \ Windows gibi biçimlendirilmiş ve UTF-8 olarak kodlanmış Linux üzerinde bir metin dosyası oluşturarak bir sorun yaşıyorum.

Ne Im yapıyor şudur:

while($row = mysql_fetch_array($result))
 {
  $product =  $row['products_id']
  . ' ' . $row['products_name']
  . ' ' . $row['manufacturers_name']
  . ' ' . $row['products_model']
  //. ' ' . $row['products_sku']
  . ' ' . zen_href_link('product_info', 'cPath=' . $cPath .  '&products_id=' . $row['products_id']) 
  . ' ' . number_format($row['products_price'],2)
  . ' ' . strip_tags(zen_get_products_description($row['products_id']))
  . ' ' . HTTP_SERVER . '/' .DIR_WS_IMAGES . $row['products_image']
  . ' ' . 'electronics'
  . "\r\n";
 $product = utf8_encode($product);
 fwrite($fh, gzencode($product,9)); 

Ben izlenim "\ r \ n" altında olduğunu ve onun bitmiş gibi kodlama gerekli tüm thats. Ben burada bir şey eksik?

0 Cevap