1.緩存問題:本地編寫代碼測試正常,上傳到linux 或unix系統上,結果致使樣式丟失(強制刷新就正常),這個與寫css的格式或方法有關;css
2.編碼中相關變量:$pay_table_name='msc_home_pay_user_card_'.$group_code.''; 和$pay_table_name='msc_home_pay_user_card_'.$group_code.; 寫法效果同樣,若使用TP的連貫操做的帶入變量注意:如:$card_type=M('msc_member_card')->where('shop_code='.$shop_code.'')->select();linux
該連貫操做,windos下正常,在linux下會報一下錯誤:把$shop_code當成字段名稱 來查了;數組
應該這樣寫where的條:$card_type=M('msc_member_card')->where("shop_code='.$shop_code.'")->select();緩存
直接使用數組或變量便可;測試
$card_tsype_where='shop_code='.$shop_code;編碼
$card_tsype_where="shop_code="'.$shop_code."'";spa
$card_type_where['shop_code']=$shop_code;unix
$card_type=M('msc_member_card')->where($card_type_where)->select();code
事件事件
SET GLOBAL event_scheduler="ON" #開啓事件 SET GLOBAL event_scheduler="OFF" #關閉事件 #事件1(插入時間戳,更新時間): CREATE DEFINER=`root`@`localhost` EVENT `auto_install` ON SCHEDULE EVERY 30 SECOND STARTS '2015-11-22 00:00:00' ENDS '2015-11-23 00:00:00' ON COMPLETION PRESERVE ENABLE COMMENT 'auto_install' DO INSERT INTO `users` (`id`, `name`, `age`, `addtime`, `update`) VALUES (NULL, 'auto_name', 20, UNIX_TIMESTAMP(),CURRENT_TIMESTAMP) #事件2(插入時間,更新時間): CREATE DEFINER=`root`@`localhost` EVENT `auto_install` ON SCHEDULE EVERY 5 MINUTE STARTS '2015-11-22 00:00:00' ENDS '2015-11-23 00:00:00' ON COMPLETION PRESERVE ENABLE COMMENT 'auto_install' DO INSERT INTO `users` (`id`, `name`, `age`, `addtime`, `update`) VALUES (NULL, 'auto_name', 20, CURRENT_TIMESTAMP,CURRENT_TIMESTAMP)