splitbrain / php-epub-meta

A PHP library to read and write EPub meta data
MIT License
58 stars 18 forks source link

Possibility to create/edit a custom meta tag? #12

Open giovanniciriello opened 6 years ago

giovanniciriello commented 6 years ago

Hi. I'm looking for a way to write and read a custom meta tag in my epub files. For example: $epub->set("publishYear", "2017"); $epub->get("publishYear");

Thanks in advice

giovanniciriello commented 6 years ago

I solved my problem. I simply created a method into epub.php like this: public function customMeta($downloader=false){ return $this->getset('dc:customMeta', $downloader); }