Translation_Entry::merge_with()
Method of the class: Translation_Entry{}
No Hooks.
Return
null
. Ничего (null).
Usage
$Translation_Entry = new Translation_Entry(); $Translation_Entry->merge_with( $other );
- $other(object) (required) (passed by reference — &)
- -
Translation_Entry::merge_with() Translation Entry::merge with code WP 6.4.1
public function merge_with( &$other ) { $this->flags = array_unique( array_merge( $this->flags, $other->flags ) ); $this->references = array_unique( array_merge( $this->references, $other->references ) ); if ( $this->extracted_comments !== $other->extracted_comments ) { $this->extracted_comments .= $other->extracted_comments; } }