9 lines
346 B
PHP
9 lines
346 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|