query() public method

Performs a query to the wiki API with the given details.
public query ( array $array ) : array
$array array Array of details to be passed in the query
return array Unserialized php output from the wiki API
コード例 #1
0
ファイル: test.php プロジェクト: hostrings/SocialWiki
<?php

include 'globals.php';
$wiki = new Wikimate();
$data = array('list' => 'recentchanges');
// Send data as a query
$array_result = $wiki->query($data);
foreach ($array_result as $value) {
    echo $value . "</br>";
}