golden hour
/home/phakp/public_html/erp/includes/odtphp
⬆️ Go Up
Upload
File/Folder
Size
Actions
Segment.php
11.36 KB
Del
OK
SegmentIterator.php
1.11 KB
Del
OK
odf.php
38.3 KB
Del
OK
zip
-
Del
OK
Edit: SegmentIterator.php
<?php /** * Segments iterator * You need PHP 5.2 at least * You need Zip Extension or PclZip library * * @copyright GPL License 2008 - Julien Pauli - Cyril PIERRE de GEYER - Anaska (http://www.anaska.com) * @license https://www.gnu.org/copyleft/gpl.html GPL License * @version 1.3 */ class SegmentIterator implements RecursiveIterator { private $ref; private $key; public function __construct(array $ref) { $this->ref = $ref; $this->key = 0; $this->keys = array_keys($this->ref); } public function hasChildren() { return $this->valid() && $this->current() instanceof Segment; } public function current() { return $this->ref[$this->keys[$this->key]]; } function getChildren() { return new self($this->current()->children); } public function key() { return $this->key; } public function valid() { return array_key_exists($this->key, $this->keys); } public function rewind() { $this->key = 0; } public function next() { $this->key ++; } }
Save