How do I use try catch in Laravel5?

Source: Internet
Author: User
Tags using git
We know that try catch is a very important property in Laravel5, so today we will bring you the knowledge of laravel5 using try catch, let's take a look at

Using the following code in LARAVEL5 does not catch the exception

try{Var_dump ($val);} catch (Exception $e) {var_dump ($e); Echo $e->getmessage ();}


Laravel 5 times the controller is forced to be placed under a sub-namespace so that the Exception class under the root namespace cannot be called directly. The controller of the Laravel 4 is directly available under the name space. After PHP 5.3 All classes are defaulted to the namespace, and if not declared, the default is under the top-level namespace.

So to use the syntax of the try catch, either the code uses use \exception at the very beginning, or catch (\exception $e). So the right way to use it is

try{Var_dump ($val);} catch (\exception $e) {var_dump ($e); <br><br>echo $e->getmessage (); <br>}


Ps:laravel 5 Try Catch problem: unable to detect Exception

In a recent project, try Catch was attempted, and it was found to have been unsuccessful

try{Var_dump ($val);} catch (Exception $e) {var_dump ($e);}


In PHP, this code should print the value of $e. However, in Laravel 5, it is not. This is because Laravel 5 enforces the PSR Standard and must use the correct namespace.

So to use the syntax of the try catch, either the code uses use \exception at the very beginning, or catch (\exception $e). So the right way to use it is

try{Var_dump ($val);} catch (\exception $e) {var_dump ($e);}

Believe that you have seen these cases you have mastered the method, more wonderful please pay attention to the PHP Chinese network other related articles!

Related reading:

PHP deployment Environment using GIT

Some use cases of git

JavaScript data types and git use code explained

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.