728x90 개발/php17 php 문자열 조합하기 php 문법 $temp = "변수" $strTemp = "연결하기" . $temp 마침표(.) 를 이용 2018. 7. 30. PHP-SQLite2JSON https://github.com/Vaseltior/PHP-SQLite2JSON 2018. 7. 27. SQLite to JSON with PHP SQLite to JSON with PHP ajax로 php 파일 호출 sqlite3 연결후 여러행의 데이터를 json 형식으로 보내주기http://www.vaseltior.com/sqlite-to-json-with-php/ 나는 여기서 getJSONFromSQLite 함수를 조금 수정해서 리턴을 받았다..https://github.com/Vaseltior/PHP-SQLite2JSON 소스를 받을 수도 있다. 2018. 7. 26. 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. 이전 1 2 3 4 5 다음 728x90