본문 바로가기
반응형

Programming/PHP22

Clean Code PHP - 한글판 https://github.com/yujineeee/clean-code-php GitHub - yujineeee/clean-code-php: :bathtub: Clean Code PHP 한글판 :bathtub: Clean Code PHP 한글판. Contribute to yujineeee/clean-code-php development by creating an account on GitHub. github.com 2024. 3. 8.
open LMS moodle 설치기(debian) https://moodle.org/ 홈 | Moodle.org Moodle LMS Course management, back ups & rollovers simplified Moodle LMS Manage content like never before Moodle Workplace Our long awaited charts in Report Builder are coming! moodle.org 1. git 에서 다운로드하기 git clone -b MOODLE_403_STABLE git://git.moodle.org/moodle.git 2. 데이터베이스, 권한 생성해 두기 CREATE DATABASE moodle DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_gener.. 2024. 1. 7.
[코드이그나이터] PostgreSQL 사용하기 0. PostgreSQL 서버 및 관리툴 설치 오늘 날짜로 최신인 PostgreSQL 15.1을 윈도우 버전으로 설치를 진행했다. Stack Builder는 일단 패스하고 설치했다. https://www.enterprisedb.com/downloads/postgres-postgresql-downloads Community DL Page Note: EDB no longer provides Linux installers for PostgreSQL 11 and later versions, and users are encouraged to use the platform-native packages. Version 10.x and below will be supported until their end of lif.. 2023. 2. 9.
[코드이그나이터] Postgre 연동시 오류나면? CodeIgniter\Database\Exceptions\DatabaseException #8 Unable to connect to the database. Main connection [Postgre]: Call to undefined function CodeIgniter\Database\Postgre\pg_connect() php.ini 파일에서 extension=pgsql 이 주석처리 해제가 되어있지 않은 경우입니다. 주석을 해제하고 다시 실행해 보면 정상 작동될 것입니다. 2023. 2. 9.
[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.
728x90