PHP는 mysql_affected_rows() 함수를 사용하여 쿼리에 의해 변경된 행 수를 찾습니다. 이를 설명하기 위해 다음 예가 있습니다. −
<html> <head> <title>Rows affected by query</title> </head> <body> <?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully<br />'; mysql_select_db( 'TUTORIALS' ); $result_id = mysql_query ($query, $conn_id); # report 0 rows if the query failed $count = ($result_id ? mysql_affected_rows ($conn_id) : 0); print ("$count rows were affected</p><p>"); ?> </body> </html>
위 내용은 MySQL 쿼리의 영향을 받는 행 수를 계산하는 PHP 스크립트를 어떻게 작성할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!