set() and ->save() When attempting to update a field on a node pr..." /> set() and ->save() When attempting to update a field on a node pr..." /> set() and ->save() When attempting to update a field on a node pr..."/>

Goal: Programmatically change value of string field from "1" to "01" using entity ->set() and ->save()

When attempting to update a field on a node programmatically (via a custom module's cron hook), the initial value of the "Text (plain)" field is "1". When attempting to update the field programmatically to "01" (the 0 is important for business purposes), the change is ignored. However, it does work if I set to almost any other value.

// DOES NOT save update to field (Current value is "1")
$node = \Drupal\node\Entity\Node::load(1);
$node->set('field_code', '01'); // '01' is indeed a string
$node->save();
// DOES save update to field (Current value is "1")
$node = \Drupal\node\Entity\Node::load(1);
$node->set('field_code', '02');
$node->save();

If I were to make the change via the UI's node edit form, the change is saved in the same scenario.

Has anyone else encountered this? It seems that there must be some validation that is occurring that is comparing the strings before saving as '01' == '1'; // true (as string) in PHP.

1

There are 1 best solutions below

0
On

I encountered the same problem and I finally found the cause.

As you know, when updating an existing revision, keep the existing records if the field values did not change. And one field value and the original value are compared by not === but == at the last of FieldItemList::equals.

Unfortunately, it seems like we can't avoid this problem.