Set_exception_handler function usage in ThinkPHP, thinkphpc Function
This example describes how to use the set_exception_handler function in ThinkPHP. Share it with you for your reference. The specific method is as follows:
Function:
Copy codeThe Code is as follows: string set_exception_handler (callback $ exception_handler)
Definition and usage:
The set_exception_handler () function sets the custom exception handling function.
This function is used to create your own exception handling methods during runtime.
This function returns the old exception handler. If it fails, null is returned.
Syntax:
Set_exception_handler (exception_function)
| Parameters |
Description |
| Error_function |
Required. Specifies the function called when an uncaptured exception occurs. This function must be defined before the set_exception_handler () function is called. This exception handling function requires a parameter, that is, the thrown exception object. |
Tips and notes:
Prompt: After the exception handler is called, the script stops running.
I also find this function when I look at the TP code, so I can't understand it. Why have I never cared about these things before? (Beat your chest at ing ...)
Let's take a look at how TP is implemented. Er, why must we use TP. Well, I will move the manual examples later.
Copy codeThe Code is as follows: public function appException ($ e)
{
Halt ($ e->__ toString ());
}
Set_exception_handler (array (& $ this, "appException "));
Oh, is this simple? Because I didn't provide the Implementation of The halt method, this is enough.
Let's look at the example in the manual,
Copy codeThe Code is as follows: function exception_handler ($ exception ){
Echo "Uncaught exception:", $ exception-> getMessage (), "n ";
}
Set_exception_handler ('exception _ handler ');
Throw new Exception ('uncaught exception ');
Echo "Not Executedn ";
In fact, set_exception_handler sets the custom function to be called when your program needs to throw an exception.
That's simple.
Note:
Set_exception_handler ("myException") not only accepts functions, but also accepts class methods (public static methods and public non-static methods are acceptable), but must be transmitted in arrays, the first value of the array is "Class Name", and the second parameter is "method name"
I hope this article will help you with ThinkPHP framework programming.
How to Use PHP functions for thinkphp templates
That's what I wrote. Yes. {$ Create_time | date = 'Y-m-d H: I: s', ###}, but $ create_time should be an 11-digit number.
Reference: doc.thinkphp.cn/manual/use_function.html
The ThinkPHP framework template uses system functions.
// You can use either of the following methods: // 1. directly use <? Php?> Tag <? Phpif (mb_strlen ($ vo. name) <26) {echo $ vo. name;} else {echo mb_strlen ($ vo. name, 0, 20 ). "... ";}?> // 2. Use the template label <if condition = "mb_strlen ($ vo ['name']) lt 26"> {$ vo. name} <else/> {$ vo. name | mb_strlen = 0, 20}