- πΊπΈUnited States markdorison
Please reopen with a merge request against 4.x if this issue is still relevant.
Hi I use csv serialization programtically.
For example with this code :
use Drupal\csv_serialization\Encoder\CsvEncoder;
use Symfony\Component\Serializer\Serializer;
$encoders = [new CsvEncoder(',', '""', '\\')];
$serializer = new Serializer([], $encoders);
$row_csv= $serializer->serialize([['test',1,'2012-02']], 'csv') . PHP_EOL;
kint($row_csv);
I can see that there are no encolsure on each field.
also I don't understand why it'is required (throw an exception) if you dont wann enclosure, related to https://www.drupal.org/project/csv_serialization/issues/2936843 π¬ How to have no enclosure? Fixed
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Please reopen with a merge request against 4.x if this issue is still relevant.