반응형
From main/php.h
of PHP version 5.5.6:
#ifdef PHP_WIN32
# include "tsrm_win32.h"
# include "win95nt.h"
# ifdef PHP_EXPORTS
# define PHPAPI __declspec(dllexport)
# else
# define PHPAPI __declspec(dllimport)
# endif
# define PHP_DIR_SEPARATOR '\\'
# define PHP_EOL "\r\n"
#else
# if defined(__GNUC__) && __GNUC__ >= 4
# define PHPAPI __attribute__ ((visibility("default")))
# else
# define PHPAPI
# endif
# define THREAD_LS
# define PHP_DIR_SEPARATOR '/'
# define PHP_EOL "\n"
#endif
http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-php-eol
반응형
'Story > php' 카테고리의 다른 글
Alipay의 최신 Error Code (0) | 2015.03.09 |
---|---|
유튜브 영상 주소에서 영상 아이디 값구하는 정규식 / parse youtube video id using preg_match (0) | 2015.01.29 |
도로명 주소 api 안전행정부 제공 (0) | 2014.11.11 |
pear 웹에서 설치할때 오류발생시 (0) | 2014.10.15 |
PHP, cURL, CURLOPT FOLLOWLOCATION and Open Basedir or Safe Mode (0) | 2014.09.24 |