Inheritance: extends Controller\Base\Page
コード例 #1
0
ファイル: api.php プロジェクト: PhanQuocTrung/WeatherStation
<?php

require_once 'common.php';
if (isset($_GET['callback'])) {
    echo "{$_GET['callback']}(" . \Controller\Api::getInstance()->get() . ")";
} else {
    echo \Controller\Api::getInstance()->get();
}