Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of wenchi  >  googleSiteMap  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example.php
Class: googleSiteMap
Build a Google site map crawling the site pages
Author: By
Last change: fix example
Date: 2008-01-05 04:59
Size: 508 bytes
 

Contents

Class file image Download
<?
/**
 * google sitemape example
 * 
 * @package googleSiteMap
 * @author www.phptw.idv.tw
 * @copyright www.phptw.idv.tw
 * @version 2007/12/14
 * @uses snoopy class
 * @link www.phptw.idv.tw
 */

ob_start();
set_time_limit(0);

//include_once(dirname(__FILE__)."/configuration.php");

include_once(dirname(__FILE__)."/class.googlesitemap.php");


$classSiteMap=new googleSiteMap("http://blog.phptw.idv.tw",dirname(__FILE__)."/",true);


$classSiteMap->printSiteMap();

exit;

?>