https://stackoverflow.com/questions/21333469/in-array-expects-parameter-2-to-be-array-null-given

Posted by 이상욱1
,

curl errorno 60



https://github.com/google/google-api-php-client/issues/788

https://stackoverflow.com/questions/21114371/php-curl-error-code-60


Posted by 이상욱1
,

php 스톰 관련 에러로그가 계속 저렇게 쌓였었는데 

아래 글에서 php 가 여러개 깔려잇는경우 생길수있다고 해서  지워주니깐 해결 됨 

http://stackoverflow.com/questions/32201991/phpstorm-is-throwing-an-error-for-phpcs

Posted by 이상욱1
,

http://stackoverflow.com/questions/4237090/how-to-pass-array-through-hidden-field

Posted by 이상욱1
,
https://confluence.jetbrains.com/display/PhpStorm/Sync+changes+and+automatic+upload+to+a+deployment+server+in+PhpStorm#SyncchangesandautomaticuploadtoadeploymentserverinPhpStorm-(optional)5.Notifyaboutremotechanges


Posted by 이상욱1
,

https://www.jetbrains.com/help/phpstorm/2016.2/viewing-local-history-of-a-file-or-folder.html

Posted by 이상욱1
,

xamp 태그 이용

PHP 2016. 11. 3. 15:53

http://zetawiki.com/wiki/PHP_%ED%95%A8%EC%88%98_xmp()

Posted by 이상욱1
,

http://www.convertstring.com/ko/Hash/SHA256


암호화 관련 내용 

http://crazia.tistory.com/entry/PKI-PKI-%EC%9D%98-%EA%B8%B0%EB%B3%B8-%EA%B0%9C%EB%85%90-%EA%B0%84%EB%8B%A8-%EC%84%A4%EB%AA%85

'PHP' 카테고리의 다른 글

스톰 로컬 워크 히스토리 보기  (0) 2016.11.08
xamp 태그 이용  (0) 2016.11.03
What is the difference between single-quoted and double-quoted strings in PHP?  (0) 2016.09.30
글자 용량 체크  (0) 2016.09.28
날짜 비교하는법  (0) 2016.09.13
Posted by 이상욱1
,



http://stackoverflow.com/questions/3446216/what-is-the-difference-between-single-quoted-and-double-quoted-strings-in-php

'PHP' 카테고리의 다른 글

xamp 태그 이용  (0) 2016.11.03
해시키 생성때 이용하는 암호화 SHA256  (0) 2016.10.12
글자 용량 체크  (0) 2016.09.28
날짜 비교하는법  (0) 2016.09.13
stdobject 배열 변환  (0) 2016.05.20
Posted by 이상욱1
,

글자 용량 체크

PHP 2016. 9. 28. 16:58

http://vivaceg.tistory.com/entry/PHP-%EC%98%88%EC%A0%9C-%EC%9C%A0%EB%8B%88%EC%BD%94%EB%93%9CUTF-8-%ED%95%9C%EA%B8%80-%EB%AC%B8%EC%9E%90%EC%97%B4-%ED%81%AC%EA%B8%B0%EA%B8%80%EC%9E%90-%EC%88%98-%EA%B5%AC%ED%95%98%EA%B8%B0-Unicode-String-Size


테스트 



var_dump(strlen('한글문')); - 9byte
var_dump(mb_strlen("한글문", "UTF-8")); exit; - 3byte


Posted by 이상욱1
,