按月存檔:6 月 2017

date.timezone

PHP 5開始,date.timezone 一開始是未設置,所以在使用date相關的函式的時候,時間會對不起起來,因此必須去設定date.timezone的值,

1.使用php.ini

[Date]
;date.timezone =

改為
[Date]
date.timezone = “Asia/Taipei”

將前面的冒號 ; 拿掉,然後重新啟動apache。

 

2.使用 php function

php的檔案內,增加一行設定,
date_default_timezone_set(“Asia/Taipei”)

angular-vs-repeat

來源: https://github.com/kamilkp/angular-vs-repeat

在實作中,
1. 使用 vs-repeat 搭配 ng-repeat 時,html可以產生固定的列數,比如 6~8 列,當資料源大於 8 時,會動態移動資料源的指標,讓資料動態顯示在 html裡。

2.如果僅使用ng-repeat 時,資料源有幾筆,在html裡,就會產生幾列。