php7 24

PHP 상대주소 절대주소변경

[함수] 상대경로를 특정URI 기준의 절대경로로 변환하기 PHP Warning: preg_replace(): The /e modifier is no longer supported PHP >= 7.0.0 : preg_replace /e modifier는 지원되지 않는다. [함수] 상대경로를 특정URI 기준의 절대경로로 변환하기 에서 원래 소스를 확인 할 수 있다. preg_replace to preg_replace_callback function http_src_to_abs($content, $base_uri) { $pattern_a = array("@(\s*href|\s*src)(\s*=\s*'{1})([^']+)('{1})@i" , "@(\s*href|\s*src)(\s*=\s*\"{1})([^\"]+..

lang/php 2018.07.11

PHP 로그, 에러 리포팅 제어

PHP – How to disable error log, display errors and error reporting programmatically 최고의 방법은 php.ini에서 제어하는게 좋다. Apache Web Server Setting error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT display_errors = Off log_errors = On error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT : 모든 종류의 경고를 빼거나 뺄수 있도록 지시. display_errors = Off : 에러 표시해제 log_errors = On : 로컬파일에 에러기록 PHP Setting ini_set('error_repo..

lang/php 2018.07.10

PHP Warning: preg_replace(): The /e modifier is no longer supported

PHP – How to fix the “Warning: preg_replace(): The /e modifier is no longer supported” error in PHP7 well-documented issue in PHP manualphp.net 패턴변경자 Warning: preg_replace(): The /e modifier is no longer supported PHP 5.x에서 PHP7으로 업그레이드 시 발생하는 가장 일반적인 문제들 중 하나. well-documented issue in PHP manual PHP 매뉴얼에서 v5.5 부터 사용되지 않으며(deprecated) v7.0.0에는 지원되지 않은(unsupported)다고 문서에 명시되어 있지만, 과거 레거시 코드를 그대로 ..

lang/php 2018.07.09

PHP math-php

markrogoyski/math-php 20 Awesome PHP Libraries For Early 2017 Powerful modern math library for PHP: Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra PHP를위한 강력한 현대 수학 라이브러리 : 설명적인 통계 및 회귀 분석 기능; 연속적이고 이산 된 확률 분포; 행렬 및 벡터를 이용한 선형 대수학, 수치 해석; 특별한 수..

lang/php 2017.06.01

Requests for PHP

rmccue/Requests 20 Awesome PHP Libraries For Early 2017 A no-dependencies library that lets you send HTTP requests. It provides the needed methods for adding headers, accessing response data, handling forms, and everything else you may need, neatly packaged in a clean and easy to use API. HTTP 요청을 보낼 수있는 무 의존성 라이브러리. 헤더를 추가하고, 응답 데이터에 액세스하고, 양식을 처리하고, 필요한 모든 것을 깨끗하고 사용하기 쉬운 API로 깔끔하게 패키지화하는 데 필요..

lang/php 2017.05.23
반응형