目前分類:未分類文章 (181)

瀏覽方式: 標題列表 簡短摘要

change laravel env

DB_HOST=mariadb  or mysql

學習程式 發表在 痞客邦 留言(0) 人氣()

1.first

sudo apt-get autoremove 'virtualbox*'

2.apt-get install libsdl1.2debian 

學習程式 發表在 痞客邦 留言(0) 人氣()

1.在window,要先用docker-machine 開啟一台vm,start 後 用docker-machine env default 會給環境變數

然後設定完後docker就可以連上vm

學習程式 發表在 痞客邦 留言(0) 人氣()

1.array_flip key跟value對調

Array ( [1] => b [2] => c )

學習程式 發表在 痞客邦 留言(0) 人氣()

MYSQL 事务处理主要有两种方法:

1、用 BEGIN, ROLLBACK, COMMIT来实现

  • BEGIN 开始一个事务 或  start transaction;
  • ROLLBACK 事务回滚
  • COMMIT 事务确认

 

學習程式 發表在 痞客邦 留言(0) 人氣()

長這樣

學習程式 發表在 痞客邦 留言(0) 人氣()

1.union,union all

union 連接兩個句子

學習程式 發表在 痞客邦 留言(0) 人氣()

1.time:3 byte       

格式最大為 -838:59:59~838:59:59

學習程式 發表在 痞客邦 留言(0) 人氣()

1.如果a是int存float會自動四捨五入

insert into a (c)values(1.1)

學習程式 發表在 痞客邦 留言(0) 人氣()

1.myisam 和innodb不同

1.1myisam table lock  ,innodb row lock

學習程式 發表在 痞客邦 留言(0) 人氣()


<?php

學習程式 發表在 痞客邦 留言(0) 人氣()

假設今天2018-03-14

$a= mktime(0,0,0,date('m'),date('d')+1,date('y'));

學習程式 發表在 痞客邦 留言(0) 人氣()

 1.邊界

/\bapple/

學習程式 發表在 痞客邦 留言(0) 人氣()

1.路由隱式綁定model

{user}要跟$user 一樣名稱

學習程式 發表在 痞客邦 留言(0) 人氣()

1.路由隱式綁定model

{user}要跟$user 一樣名稱

學習程式 發表在 痞客邦 留言(0) 人氣()

1.strip_tags 

將php or html 的tag消除

學習程式 發表在 痞客邦 留言(0) 人氣()

<?php 
 class s{

學習程式 發表在 痞客邦 留言(0) 人氣()

 

There are N gas stations along a circular route, where the amount of gas at station i is gas[i].

You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to its next station (i+1). You begin the journey with an empty tank at one of the gas stations.

學習程式 發表在 痞客邦 留言(0) 人氣()

[[1,3,1],
 [1,5,1],
 [4,2,1]]

想成九宮格

1→3→1→1→1  是最小路徑

學習程式 發表在 痞客邦 留言(0) 人氣()

單行可不加

多行加了會抓不到

學習程式 發表在 痞客邦 留言(0) 人氣()