westdc-zf1/application/default/controllers/MetainfoController.php

9 lines
346 B
PHP
Raw Normal View History

2010-03-19 10:18:58 +00:00
<?php
class MetainfoController extends Zend_Controller_Action {
function indexAction() {
$title=$this->_request->getParam('title');
$filePath="http://wiki.westgis.ac.cn/api.php?format=php&action=query&prop=revisions&titles=$title&rvprop=content";
$wikifp=fopen($filePath,r);
$this->view->title=$wikifp;
}
}