銀行的分行數量由 2014年起歷年遞減 - 2018

銀行的分行數量,從 2014年開始 逐年遞減,大家的習慣有在改變,不過有些銀行從剛開始,就沒打算增加分行的感覺 (直接採用跨行提款免費等等方式來進攻)~

最近看到原本是銀行的分行的地點,都開始變成星巴客或其它店面,反而銀行由 1F 都移到更高樓層去了~

  • 註:2017年銀行總分行數量是 3417家

閱讀全文〈銀行的分行數量由 2014年起歷年遞減 - 2018〉

PHP 取得 Git 的 branch name

想要取得專案中目前在 Master 或 Branch,可以判斷要去抓不同的 config,可以使用此 function。

<?php
function get_git_branch_name()
{
    $git_head = './.git/HEAD';
    return (file_exists($git_head)) ? implode('/', array_slice(explode('/', file_get_contents($git_head)), 2)) : '';
}
?>

註:$git_head 的路徑請自行修改設定。

使用方式:

<?php print_r(get_git_branch_name()); // master ?>

感謝 Fwolf 的建議,用 system 的指令執行:git branch | grep '*' | awk '{print $2}' ,可以解決 submodule 抓不到 branch 的問題