본문 바로가기

php23

[PHP] Deprecated features in PHP 5.4.x(PHP 5.3.x to PHP 5.4.x) Deprecated features in PHP 5.4.x Deprecated functions: mcrypt_generic_end()mysql_list_dbs() http://php.net/manual/kr/migration54.deprecated.php 2013. 7. 15.
[PHP] Deprecated features in PHP 5.3.x(PHP 5.2.x to PHP 5.3.x) 관령 링크 : http://php.net/manual/kr/migration53.deprecated.php Deprecated features in PHP 5.3.x PHP 5.3.0 introduces two new error levels: E_DEPRECATED and E_USER_DEPRECATED. The E_DEPRECATED error level is used to indicate that a function or feature has been deprecated. The E_USER_DEPRECATED level is intended for indicating deprecated features in user code, similarly to the E_USER_ERROR and E_USER.. 2013. 7. 15.
PHP PCRE 정규표현식 ^ * php preg_ 함수 관련의 정규식 메모 입니다. PCRE 정규표현식인데, perl 과 관련된 표현식인 것 같다.posix 표현식도 있다는데, 잘은 모르겠음.. 1. ^ 맨처음문자열의 맨처음... 이었구나... ^[a-z] 는 처음부터 알파벳... /^[a-z]/ 이런식으로 쓰는듯. 2. $ 맨마지막/[a-z]$/ 이런식인듯.. 3. . 점. 아무 문자나 하나 4. ? 바로 앞에 문자가 없거나 하나만 있거나https? 이렇게 하면, http 하고 https 둘다 포함이 됨.jpe?g 이렇게 하면 jpg 하고 jpeg 둘다 됨. 5. 정규식에 해당되는 것을 문자화 시킬 때에 \역슬래쉬 표시해줌. 6. * 바로 앞의 문자나 문자열이 없거나 하나 이상 있어도 됨. 7. + 바로 앞의 문자나 문자열이 하나.. 2013. 7. 7.