setCurrentStore(0); $helper = Mage::helper('urapidflow'); // run profile using name (this profile exports to var/urapidflow/export/products.csv): $helper->run("Export Products"); // post-process the file to format currency (stream for lower memory footprint): // (assuming that the script is in magento root folder) // in this example column 5 (starting from 0) is the price that need to be formatted $from = fopen('var/urapidflow/export/products.csv'); $to = fopen('var/urapidflow/export/products1.csv'); while ($row = fgetcsv($from)) { $row[5] = number_format($row[5], 2, ',', ' '); fputcsv($to, $row); } fclose($from); fclose($to);