php)laravel(라라벨) 자주 쓰는 코드( 서버 리턴, try catch, 등)
2021. 12. 28. 15:42
Backend 언어 및 프레임워크/PHP
프론트 php 토큰값 불러오기 $mb_id = $request->user_info['mb_id']; 반복문해서 저장 foreach($data as $key) { $row = new EstimateList(); $row->partnumber = $key["partnumber"]; $row->reg_date = $reg_date; $row->save(); } 배열값 풀기 $request->input()); $request->all()); 객체, 배열 값 가져오는 방법 객체 obj->대상 배열 arr['대상'] try, catch try{ } catch (\Exception $e) { echo 'Message: ' . $e->getMessage(); return false; } json을 디코드해서 데이터 가..
laravel) request로부터 IP 주소 얻기
2021. 12. 20. 17:15
Backend 언어 및 프레임워크/PHP
$ip= $request->ip(); public function store(Request $request) { $ip= $request->ip(); }
PHP) 문법 사이트
2021. 11. 17. 14:22
Backend 언어 및 프레임워크/PHP
http://www.keumkuwon.org/technote7/manual_html/menu_9.html 테크노트 사용자 매뉴얼-php 기본 문법 www.keumkuwon.org http://modernpug.github.io/php-the-right-way/ PHP: The Right Way 한국어판 쉽게 읽을 수 있는 PHP의 베스트 프랙티스, 코딩 표준, 권위있는 튜토리얼로의 링크를 제공합니다. modernpug.github.io https://laravel.kr/docs/8.x/installation 라라벨 8.x - 설치하기 라라벨 한글 메뉴얼 8.x - 설치하기 laravel.kr https://www.oulub.com/docs/laravel/ko-kr/ 출시 노트 - Laravel 8.x 한..
PHP) 함수
2021. 11. 16. 23:22
Backend 언어 및 프레임워크/PHP
함수 사용 // 문자 길이보는 함수 $str = '12313131'; strl($str); // 끝나는 문장을 자동 줄바꿈 시키는 함수 nl2br($str); file_get_contents 라는 내장함수 사용해서 동적 표현