社團法人高雄市聲暉協會
讓高雄可以成為身障者友善城市,讓臺灣成為聽障者驕傲的國度。
定期定額或單筆捐款都可以讓我們的關懷服務及倡議計畫,能夠專注於長期的發展,並提供更大的彈性,讓聽障者發揮創意,探索自我,發掘生命經驗中有趣的那一面。
誠如我們所樂觀相信的價值,簡單與快樂是可以實現的,你的加入正是我們所期待的正向夥伴關係。
- 填寫捐款金額
- 填寫捐款人資料及收據
- 確認填寫資訊
- 完成捐款
/** * version #1.0 * package money899 Portal * date 2009/3 * author BigNostrilTAO * email bignostriltao@gmail.com * copyright protected */ class CollectionIterator implements Iterator { private $_collection; private $_currIndex = 0; private $_keys; function __construct(Collection $objCol) { $this->_collection = $objCol; $this->_keys = $this->_collection->keys(); } function rewind() { $this->_currIndex = 0; } function hasMore() { return $this->_currIndex < $this->_collection->length(); } function key() { return $this->_keys[$this->_currIndex]; } function current() { return $this->_collection->getItem($this->_keys[$this->_currIndex]); } function next() { $this->_currIndex++; } function valid() { return $this->_currIndex < $this->_collection->length(); } } ?>
定期定額或單筆捐款都可以讓我們的關懷服務及倡議計畫,能夠專注於長期的發展,並提供更大的彈性,讓聽障者發揮創意,探索自我,發掘生命經驗中有趣的那一面。
誠如我們所樂觀相信的價值,簡單與快樂是可以實現的,你的加入正是我們所期待的正向夥伴關係。