We now have a youtube channel. Subscribe!

PHP | trigger_error() Function

PHP trigger_error() Function


Hello folks! welcome back to a new section of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP trigger_error() Function.

The built-in trigger_error() function is used to trigger a user error condition. This built-in PHP function can be used in conjunction with the built-in error handler, or with a user defined function that has been set as the new error handler (set_error_handle).

Syntax

Following below is the syntax to use this function -

bool trigger_error ( string $error_msg [, int $error_type] );


Parameter Details

Sr.NoParameter & Description
1

error_msg(Required)

.It specifies the error message. Limited to 1024 characters in length.

2

error_types(Optional)

It specifies the error type for this error message.

Possible error types −

  • E_USER_ERROR − Fatal user-generated run-time error. Errors that can not be recovered from. Execution of the script is halted.

  • E_USER_WARNING − Non-fatal user-generated run-time warning. Execution of the script is not halted.

  • E_USER_NOTICE − Default. User-generated run-time notice. The script found something that might be an error, but could also happen when running a script normally.


Return Value

This PHP function returns FALSE if wrong error_type is specified, TRUE otherwise.

Example

Try out the below example -

<?php
 if ($test<15) {
    trigger_error("Number cannot be less than 15");
}
?> 

Output

When the above code is executed, it will produce the following result -

Number cannot be less than 15


Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we are going to be discussing about the PHP user_error() Function

Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.

Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.

Thanks for reading and bye for now.

Post a Comment

Hello dear readers! Please kindly try your best to make sure your comments comply with our comment policy guidelines. You can visit our comment policy page to view these guidelines which are clearly stated. Thank you.
© 2023 ‧ WebDesignTutorialz. All rights reserved. Developed by Jago Desain