aboutsummaryrefslogtreecommitdiff
path: root/php/tests/memory_leak_test.php
Commit message (Collapse)AuthorAgeFilesLines
* Add mergeFrom method on Message (#2766)Paul Yang2017-03-011-0/+5
| | | | | | | | This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Map fields key-value pairs are overritten. Singular/Oneof sub-messages are recursively merged. All overritten sub-messages are deep-copied.
* Make php generated code conform to PSR-4. (#2435)Paul Yang2016-12-081-1/+9
| | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* Check in php implementation. (#2052)Paul Yang2016-09-151-0/+73
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.