Package Data | |
---|---|
Maintainer Username: | heivin |
Maintainer Contact: | 77444176@qq.com (Heivin Wu) |
Package Create Date: | 2015-12-25 |
Package Last Update: | 2015-12-26 |
Language: | JavaScript |
License: | MIT |
Last Refreshed: | 2024-11-17 03:02:47 |
Package Statistics | |
---|---|
Total Downloads: | 33 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Common Chinese development resources in Laravel 常用中文开发资源: 省市县区 地图数据
require_once __DIR__ . '/../../vendor/autoload.php'; // Autoload files using Composer autoload
use Heivin\Chinese;
var_dump( Chinese::province() ); // Array
echo Chinese::city('json'); // Json
var_dump( Chinese::area() ); // Array
var_dump(json_encode(Chinese::map('anhui')));
var_dump(json_encode(Chinese::map('anhui','json'))); //Json
5.x
use Heivin\Chinese;
class IndexController extends Controller {
public function test(){
return response()->json(Chinese::province()); // Response with json
return response(Chinese::city('json'))->header('Content-Type', 'text/json'); // Response with json
}
}