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 9305837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T00:01:22+00:00 2026-06-19T00:01:22+00:00

I am building an application where the user can edit some data and then

  • 0

I am building an application where the user can edit some data and then gets presented with a screen where he can confirm (and comment on) his edits.

In the confirmation form I display the changes that have been made to the entity. This works for “normal” fields. Here is some code that works for checking a single field:

// create $form
// bind $form

if ($form->isValid() {
    $data = $form->getData();
    // example, get changes of a "normal" field
    if ($data['color'] != $entity->getColor()) {
        // do something with changes
    }
}

But I can’t do the same for a relation (example ManyToMany with Users) :

    if ($data['users'] != $entity->getUsers()

doesn’t work because $data[‘users’] and $entity->getUsers() refer to the same persistent collection. It is possible to call this function to see if there are changes:

    if ($data['users']->isDirty())

but it isn’t possible to see what changes were made.

The second problem with the above is that if all items are removed from the persistent collection, Doctrine does not mark it as “changed” (isDirty() = true), so I can’t catch the specific change where the user removes all “users” from the entity in the form.

Please note that the code all works, the only problem I have is that I am unable to view/process the changes made on the confirmation step.

  • 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-06-19T00:01:23+00:00Added an answer on June 19, 2026 at 12:01 am

    Store the original collection in a variable before bind and then compared the new collection after bind. PHP has quite a few array comparison functions, and collections are readily turned into native arrays by $collection->toArray();

    eg:

    // create form
    $oldusers=$entity->getUsers()->toArray();
    // bind form
    if ($form->isValid() {
        $data = $form->getData();
        if ($data['users'] != $oldusers) {
            // do something with changes
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am building an application where the user can save some information into an
I am building an application where a User can have many Clients (which cannot
I am building a twitter application where a user can enter a tweet and
Let's say I'm building a web application whose user pages can be found at
I'm building a application (a CMS) where user can upload files like images. My
I am building a visual studio like application: User can create a new project,
I'm building a Rails application where a user can upload an image which is
I'm building an application where users can add, edit and delete users from the
I'm building an application that needs to allow a user to insert text from
I'm looking at building an application that needs to be run on a user's

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.