📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
belediyescripti.demodesign.com.tr
/
_class
/
Classes
/
PHPExcel
📝
HashTable.php
← Geri Dön
<?php class PHPExcel_HashTable { protected $items = []; protected $keyMap = []; public function __construct($pSource = NULL) { if ($pSource !== NULL) { $this->addFromSource($pSource); } } public function addFromSource($pSource = NULL) { if ($pSource == NULL) { return NULL; } if (!is_array($pSource)) { throw new PHPExcel_Exception("Invalid array parameter passed."); } foreach ($pSource as $item) { $this->add($item); } } public function add(PHPExcel_IComparable $pSource = NULL) { $hash = $pSource->getHashCode(); if (!isset($this->items[$hash])) { $this->items[$hash] = $pSource; $this->keyMap[count($this->items) - 1] = $hash; } } public function remove(PHPExcel_IComparable $pSource = NULL) { $hash = $pSource->getHashCode(); if (isset($this->items[$hash])) { unset($this->items[$hash]); $deleteKey = -1; foreach ($this->keyMap as $key => $value) { if (0 <= $deleteKey) { $this->keyMap[$key - 1] = $value; } if ($value == $hash) { $deleteKey = $key; } } unset($this->keyMap[count($this->keyMap) - 1]); } } public function clear() { $this->items = []; $this->keyMap = []; } public function count() { return count($this->items); } public function getIndexForHashCode($pHashCode = "") { return array_search($pHashCode, $this->keyMap); } public function getByIndex($pIndex = 0) { if (isset($this->keyMap[$pIndex])) { return $this->getByHashCode($this->keyMap[$pIndex]); } return NULL; } public function getByHashCode($pHashCode = "") { if (isset($this->items[$pHashCode])) { return $this->items[$pHashCode]; } return NULL; } public function toArray() { return $this->items; } public function __clone() { $vars = get_object_vars($this); foreach ($vars as $key => $value) { if (is_object($value)) { $this->{$key} = clone $value; } } } } ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula