Open In App

PHP | exit( ) Function

Last Updated : 01 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The exit() function in PHP is an inbuilt function which is used to output a message and terminate the current script.
The exit() function only terminates the execution of the script. The shutdown functions and object destructors will always be executed even if exit() function is called.
The message to be displayed is passed as a parameter to the exit() function and it terminates the script and displays the message.
The exit() function is an alias of the die() function.

Syntax:

exit(message)

Parameters Used:
The exit() function in PHP accepts one parameter.

  1. message : It is a mandatory parameter which specifies the message or status number to write before exiting the script.
Return Value:
It does not return any value.

Errors And Exceptions

  1. exit() is a language construct and it can be called without parentheses if no status is passed.
  2. If the status passed as a parameter is an integer, that value will be used as the exit status and not be printed.
  3. Exit statuses should be in the range 0 to 254 and the exit status 255 should not be used since it is reserved by PHP.

Below programs illustrate the exit() function:

Program 1:




<?php
  
// opening a link
fopen($link, "r")
  
//using exit() to display message and terminate script
or exit("Unable to establish a connection to $link");
?>


Output:

Unable to establish a connection to https://www.geeksforgeeks.org

Program 2:




<?php
//declaring variables
$a=5;
$b=5.0;
  
if($a==$b)
 {
    //terminating script with a message using exit()
    exit('variables are equal');
 }
else
 {
   //terminating script with a message using exit()
    exit('variables are not equal'); 
 }
?>


Output:

variables are equal

Reference :
http://php.net/manual/en/function.exit.php

PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads