我想以CSV格式导出对象数组:
array(10) {
[0]=>
object(Produit)#228 (36) {
["id_produit":protected]=> string(4) "9999"
["reference":protected]=> string(9) "reference1"
}
[1]=>
object(Produit)#228 (36) {
["id_produit":protected]=> string(4) "8888"
["reference":protected]=> string(9) "reference2"
}
}
类似于:
id_produit | reference | ...
9999 | reference1 | ...
8888 | reference2 | ...
第一行: attribut /列列表
另一行:对象的属性值
True带对象的数组示例: http://pastebin.com/8Eyf46pb
我试过这个:Convert array into csv但它对我不起作用。
是否可以这样做(以及如何?)或者我必须在循环中编写每个属性?
答案 0 :(得分:6)
如果您的所有属性都是公开的,那将非常容易:
// Test class
class Produit
{
public $id_produit;
public $reference;
// Test data
public function __construct()
{
$this->id_produit = rand(1, 255);
$this->reference = rand(1, 255);
}
}
// Test data array
$array = array(new Produit(), new Produit());
// Notice, you can only use a single character as a delimiter
$delimiter = '|';
if (count($array) > 0) {
// prepare the file
$fp = fopen('test/file.csv', 'w');
// Save header
$header = array_keys((array)$array[0]);
fputcsv($fp, $header, $delimiter);
// Save data
foreach ($array as $element) {
fputcsv($fp, (array)$element, $delimiter);
}
}
但正如我所见,您的财产受到保护。这意味着我们无法访问对象外的属性以及循环它们或使用(数组)类型转换。因此,在这种情况下,您必须对对象进行一些更改:
// Test class
class Produit
{
// ...
public function getProperties()
{
return array('id_produit', 'reference');
}
public function toArray()
{
$result = array();
foreach ($this->getProperties() as $property) {
$result[$property] = $this->$property;
}
return $result;
}
}
然后你可以使用new方法来代替类型转换:
// Save data
foreach ($array as $element) {
fputcsv($fp, $element->toArray(), $delimiter);
}
还要感谢新的mehod getProperties,我们可以更改标题:
// Save header
fputcsv($fp, $array[0]->getProperties(), $delimiter);
答案 1 :(得分:1)
我现在测试了以下代码,它似乎确实有用。反思是答案。
我试图让它在phpfiddle上工作,因此php:// temp但不幸的是它没有工作
<?php
class Produit
{
public $id_produit;
public $reference;
// Test data
public function __construct()
{
$this->id_produit = rand(1, 255);
$this->reference = rand(1, 255);
}
}
$array = array(new Produit(), new Produit());
$delimiter='|';
$fp=fopen('php://temp', 'w'); //replace this bit with a file name
$header=false;
foreach($array as $Produit){
$Reflection = new ReflectionClass($Produit);
$properties = $Reflection->getProperties();
$row=array();
foreach($properties as $prop){
$row[$prop->getName()] = $prop->getValue($Produit);
}
if(!$header){
fputcsv($fp, array_keys($row), $delimiter);
$header=true;
}
fputcsv($fp, $row, $delimiter);
}
//now show what has been written, you will want to remove this section
fseek($fp, 0);
fpassthru($fp);
//ends
fclose($fp);