본문 바로가기
반응형

Programming77

[PHP] Array and string offset access syntax with curly braces is no longer supported Array and string offset access syntax with curly braces is no longer supported 에러 발생시.. ​ $in = ord($str{$i}); ​ 중괄호 메소드는 문자열 내에서 개별 문자를 가져 오는 방법이 더 이상 사용되지 않으므로 다음과같이 변경한다. ​ $in = ord($str[$i]); 2023. 2. 1.
PHP 에러 출력하기 2023. 2. 1.
라라벨 설치 및 개발서버 띄우기 환경 : 우분투, apm 설치가 완료된 환경 ​ $ sudo apt install composer $ composer create-project laravel/laravel 프로젝트명 ### 특정 버전을 설치하고 싶을 경우 : $ composer create-project --prefer-dist laravel/laravel laravel7 7.6.0 $ cd 프로젝트디렉토리 $ php artisan serve --host 내부IP --port 8000 2023. 1. 31.
php + jquery(ajax) + json 기본 javascript 에서는~ $(document).ready(function($) { initSomething(); }); function initSomething() { $.ajax({ url: './something.php', type: "post", data: "mode=initSomething", dataTyee: "json", error : function(error) { alert("통신 오류가 발생했습니다!"); }, success: function (data) { $('#result').append(data.message); } }); } php 에서는~(something.php) 2023. 1. 31.
고급 프로그래머 역량 조금 오래된 기준일 수도 있으나, "Sijin Joseph" 블로그에 작성되어 있는 표를 보고 대략 고급 프로그래머의 역량에 대해 정리해 봤다. https://sijinjoseph.com/programmer-competency-matrix/ Programmer Competency Matrix | Sijin Joseph .article-container { max-width: 100% } Note that the knowledge for each level is cumulative; being at level n implies that you also know everything from the levels lower than n. sijinjoseph.com 1), 2), 3) 은 대략 초급 중급 고급 .. 2023. 1. 30.
php8.0.2 + ciboard + dompdf + 한글폰트적용 1. 최신 dompdf 다운로드 https://github.com/dompdf/dompdf GitHub - dompdf/dompdf: HTML to PDF converter for PHP HTML to PDF converter for PHP. Contribute to dompdf/dompdf development by creating an account on GitHub. github.com 2. third_party에 폴더 위치 3. libraries 에 클래스 생성 require_once APPPATH.'/third_party/Dompdf/autoload.inc.php'; use Dompdf\Dompdf; class Pdf { function __construct() { $pdf = new Dompd.. 2023. 1. 21.
728x90