728x90
반응형
■ PHP 최근 MySQL 작업으로 변경된 행 개수 구하기, mysql_affected_rows
mysql_affected_rows
INSERT, UPDATE, REPLACE, DELETE 질의로 영향받은 행 수를 얻을 때 사용하는 함수로
실패 시 "-1" 반환, 성공 시 적용된 행의 개수 반환
■ 설명
mysql_affected_rows(resource $link_identifier = NULL): int
■ 사용법
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('mydb');
/* this should return the correct numbers of deleted records */
mysql_query('DELETE FROM mytable WHERE id < 10');
echo "deleted count: " . mysql_affected_rows();
728x90
반응형
'PHP' 카테고리의 다른 글
[PHP] 배열 내 모든 값 공백 제거 trim_r() (0) | 2022.03.28 |
---|---|
[PHP] 배열 내 특정 값 삭제하기 array_diff() (0) | 2022.03.25 |
[PHP] PHP에서 .CSV 로 내보내기, php excel .csv file download (0) | 2022.02.24 |
[PHP] php_writeexcel 이용 .xls 파일 생성 (0) | 2022.02.17 |
[PHP] Cannot modify header information - headers already sent by - error 해결 방법 (0) | 2022.02.09 |