Welcome, haere mai to the website of the Cathedral Church of St Peter in Hamilton - New Zealand
You can visit our new BLOG site at St Peter's Cathedral Blog
for latest information.
It is a work in progress. Please feel free to give the Administrator your feedback via the BLOG.
St Peter’s Cathedral has stood on the top of the Cathedral Hill, known as Pukerangiora in Maori, for nearly 100 years. It is the fourth Anglican church on this site and serves as the cathedral church for the Bishop and Diocese of Waikato. The Diocese is one of seven in Aotearoa/New Zealand which are part of the worldwide Anglican Communion.
We are an inclusive church welcoming people of all ages, cultures and backgrounds. We believe that God’s love in boundless and embraces all humanity and we should try to do the same. We value traditional worship styles as reflected in our 9.45am Sung Eucharist on Sunday morning as well as encouraging more modern and less formal worship such as our Informal Eucharist at 11.30am.
Feel free to explore our web-site. If you have any enquiries please contact us at admin@stpeter.org.nz
The Reverend Phil Wilson
Acting Dean
/*
Action: To take a directory name and return an array of files contained within
Use: (dirname)
Input: String
Output: String
*/
function DirToArray($dirname) {//, &$result) {
// load the directory location
$result = array();
$dir = opendir($dirname);
$count = 0;
// read into result array
while($item = readdir($dir)) {
array_push($result,$item);
}
// sort the array
sort($result);
return $result;
}
?>