728x90 개발298 php 파일 복사 // test.php파일을 복사본 test.php.bak로 만듭니다. $oldfile = 'test.php'; // 원본파일 $newfile = 'test.php.bak'; // 복사파일 // 실제 존재하는 파일인지 체크... if(file_exists($oldfile)) { if(!copy($oldfile, $newfile)) { echo "파일 복사 실패"; } else if(file_exists($newfile)) { echo "파일 복사 성공"; } } ?> 2018. 7. 23. php JSON_PRETTY_PRINT https://gist.github.com/drazisil/eda9065698dd0beedede#file-pretty-json-php-L46php에서 json을 JSON_PRETTY_PRINT 아주 잘됨 2018. 7. 23. php 변수 전달(js) $str = 'hello';$arr = array('my', 'friend');?> 2018. 7. 21. Cannot use object of type stdClass as array Fatal error: Cannot use object of type stdClass as array in C:\Users\Dail\software\abs.php on line 108 $result['context']; To: $result->context; 2018. 7. 21. 이전 1 ··· 63 64 65 66 67 68 69 ··· 75 다음 728x90