최신 웹 개발 튜토리얼
 

PHP connection_aborted() Function

<기타 참조 PHP

함수 만들기 ( check_abort() 클라이언트 스크립트를 중단하는 경우 로그 메시지를 기록)

<?php
function check_abort()
  {
  if (connection_aborted())
  error_log ("Script $GLOBALS[SCRIPT_NAME]" .
  "$GLOBALS[SERVER_NAME] was aborted by the user.");
  }

// Some script to be executed here

// Call the check_abort function when the script ends
register_shutdown_function("check_abort");
?>


정의 및 사용

connection_aborted() 함수 검사는 클라이언트가 단절되었는지 여부.


통사론

connection_aborted()

기술적 세부 사항

반환 값 : 연결이 중단 된 경우, 그렇지 않으면 0을 반환 한 반환
PHP 버전 : 4+

<기타 참조 PHP