Php Exit Function

[Solved] Php Exit Function | Php - Code Explorer | yomemimo.com
Question : php quit

Answered by : httpsgithubcomgarzj

exit();	// Normal exit
exit(1);	// Exit with an error code
exit('Error!');	// Exit and print an error message

Source : | Last Update : Mon, 08 Jun 20

Question : php exit

Answered by :

if( !file_exists("") ) { exit("File not found on line 145: customers.txt. Hope you weren't buying anything ...");
} else { $file = fopen("customers.txt, "r"); // rest of code here

Source : https://tridang.github.io/cosc2430/ | Last Update : Mon, 22 Aug 22

Answers related to php exit function

Code Explorer Popular Question For Php