本文整理汇总了PHP中Flight::jsonp方法的典型用法代码示例。如果您正苦于以下问题:PHP Flight::jsonp方法的具体用法?PHP Flight::jsonp怎么用?PHP Flight::jsonp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Flight
的用法示例。
在下文中一共展示了Flight::jsonp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: send
/**
* @return bool
*/
public function send()
{
$this->sendHeader();
switch ($this->resType) {
case 'json':
\Flight::json($this->data, $this->resCode, true, 'utf8', $this->jsonOptions);
return false;
case 'jsonp':
\Flight::jsonp($this->data, $this->jsonpCallback, $this->resCode, true, 'utf8', $this->jsonOptions);
return false;
case 'view':
getView()->render($this->view, $this->data);
return false;
case 'filter':
return true;
}
return false;
}
示例2: function
$templatedata['ip'] = $request->ip;
$templatedata['geoinfo'] = Flight::get('geoinfo');
$templatedata['meta_description'] = Flight::get('meta_description');
// evaluate the query string (if any)
if (isset($request->query->js)) {
$templatedata['js'] = $request->query->js;
} else {
$templatedata['js'] = Flight::get('js');
}
if (isset($request->query->maptype)) {
$templatedata['maptype'] = $request->query->maptype;
} else {
$templatedata['maptype'] = Flight::get('maptype');
}
Flight::render('partials/iframe_insert.php', $templatedata, 'iframe_insert');
Flight::render('default.php', $templatedata);
});
// api to look up an ip (returns jsonp)
// http://somedomain.com/api/ip/24.105.250.46?cb=callback
Flight::route('GET /api/ip/@ip', function ($ip) {
Flight::checkIP($ip);
Flight::jsonp(array('ip' => Flight::get('ip'), 'city' => Flight::get('city'), 'region' => Flight::get('region'), 'areaCode' => Flight::get('areaCode'), 'dmaCode' => Flight::get('dmaCode'), 'countryCode' => Flight::get('countryCode'), 'continentCode' => Flight::get('continentCode'), 'latitude' => Flight::get('latitude'), 'longitude' => Flight::get('longitude'), 'regionCode' => Flight::get('regionCode'), 'regionName' => Flight::get('regionName')), 'cb');
});
// place any other dynamic routes here
// everything else (static folder)
Flight::route('GET /*', function () {
$fpath = Flight::request()->url;
Flight::getStaticFile($fpath);
});
// Now Set It Off!
Flight::start();