totox777 / tiki
Tiki 在线包装器
dev-master
2014-05-16 11:45 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2024-09-24 06:43:47 UTC
README
Laravel 4 ongkir tiki,基于 curl
将此行添加到您的 composer.json 文件中
"totox777/tiki": "dev-master"
然后,运行
composer update
以拉取最新版本。
将此行添加到您的 app.php 提供者数组中
'Totox777\Tiki\TikiServiceProvider',
并将此行添加到 app.php 别名数组中
'Tiki' => 'Totox777\Tiki\Facades\Profiler',
示例用法
$xxx = Tiki::getCost("denpasar", "bandung",1);
if($xxx!=null){
foreach ($xxx as $hasil)
{
echo 'Layanan: ' . $hasil['layanan'] . ', dengan harga : Rp. ' . $hasil['harga'] . ',- <br />';
}
}
else{
echo "Tidak ditemukan jalur pengiriman, silahkan coba kota terdekat";
}