2016년 2월 11일 목요일

라라벨 tinker

- tinker라는 뜻은 어설프게 고치다 라는 뜻, 테스트 해보고 연습해보기 편함
1. php artisan tinker

>>> DB::insert('insert into posts(title, body) values(?, ?)', ['Second Title', 'Second Body']);
=> true

>>> $post = DB::selectOne('select * from posts where id = ?', [1]);

>>> DB::update('update posts set title="Modified Title" where id = ?', [1]);
=> 1


댓글 없음:

댓글 쓰기