Search result

식은땀이 흐르는 Redis 서버 교체기 1편

올여름 Redis 서버 교체 과정에서 여러 번의 장애를 겪은 후 뼈에 새기는 반성문입니다. 목차 낡은 캐시 서버를 교체하라 섣부른

Laravel PHP redis

Malformed UTF-8 characters, possibly incorrectly encoded in Laravel

Faker를 이용해서 임의 영문 데이타를 생성해서 개인공부 중에 임의 데이타를 한글로 변경하여 DB에 등록했더니 Malformed UTF-8 characters, possibly incorrectly encoded 오류가 났음 JSON 관련 오류인가? 해서...

PHP

PHP Annotated – October 2022

PHP php-annotated-monthly php-annotated

PHP Annotated – October 2022

PHP php-annotated php-annotated-monthly

PHP Annotated – September 2022

PHP php-annotated php-annotated-monthly

PHP Annotated – September 2022

PHP php-annotated-monthly php-annotated

self vs static

self 와 static 키워드의 차이점

PHP self static Tip

PHP Annotated – August 2022

PHP php-annotated-monthly php-annotated

PHP Annotated – August 2022

PHP php-annotated php-annotated-monthly

PHP 8.1에서 상속된 메서드에서 정적 변수 사용 문제

PHP 8.0에서 8.1로 마이그레이션중 Usage of static Variables in Inherited Methods 변화로 오류가 발생했다. class A_Class { public static function foo() { static $num = 0; return ++$num; } } class B_Class...

개발 PHP