Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3272186
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T18:48:02+00:00 2026-05-17T18:48:02+00:00

I’m new to Doctrine 2 (and exceptions in PHP, really), but am trying to

  • 0

I’m new to Doctrine 2 (and exceptions in PHP, really), but am trying to come up with a robust validation engine on Doctrine 2 (on top of CodeIgniter), following this page.

Right now I’m wondering where I would define the ValidateException class, and how to ‘try’ doing a save (persist?) on my entity (from a controller, library, etc).

I’d like to have something where, after doing this (in an ‘authentication’ library, for example):

$user->username = $username;
$user->email_address = $email_address;
$user->password = $password;

$em->persist($user);
$em->flush();

return $foo; //where $foo refers to whether $em->flush() worked...

I could simply return whether that persistence was successful (i.e., passed validation and saved), or not successful (i.e., failed validation).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T18:48:02+00:00Added an answer on May 17, 2026 at 6:48 pm

    I think you may want to look at having a User Factory. You could have methods that take an array of data (from a form’s POST) and return a User object. This lets you encapsulate the entire process of creating a new User object for use within your application (and persists to your datastore). You can do all of your try/catches in this single place and all your controllers just call this one function (code isn’t scattered in all of your controllers).

    class UserFactory
    {
      /** @var Doctrine Entity Manager */
      private $_em;
    
      function __construct(EntityManager $em) {
        $this->_em = $em;
      }
    
      function createUserFromArray($data) {
        $user = new User();
        $user->setUsername($data['username']);
        $user->setEmail($data['email']);
    
        $this->_em->persist($user);
        $this->_em->flush(); // Or this could be called from some other place
    
        return $user;
      }
    }
    

    Then in your controller all you do is something like this:

    // Get the EntityManger from wherever (registry, session, etc)
    $userFactory = new UserFactory($em);
    $user = $userFactory->createFromArray($dataFromForm);
    

    Two things additional things.

    One, if you use explicit getters and setters for your properties (username and email) you can throw exceptions within those functions if they don’t meet the criteria.

    In your User class:

    function setEmail($email) {
      // Do some validations on the email address
      if (!is_valid_email($email)) {
        throw new Exception('Invalid Email');
      }
      $this->email = $email;
    }
    

    Two, I think this is the question you were really asking is about the lifecycle callbacks. You define those on/in your Model/Entity classes themselves.

    class User
    {
      /** @PrePersist @PreUpdate */
      function ensureUniqueEmail()
      {
        // Do your check, else throw exception
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm trying to create an if statement in PHP that prevents a single post
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I would like to count the length of a string with PHP. The string
I am trying to understand how to use SyndicationItem to display feed which is
this is what i have right now Drawing an RSS feed into the php,
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.