<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/standard/tests/array, branch php-7.0.9</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Fixed bug #72369 (array_merge() produces references in PHP7)</title>
<updated>2016-06-09T12:07:44+00:00</updated>
<author>
<name>Dmitry Stogov</name>
<email>dmitry@zend.com</email>
</author>
<published>2016-06-09T12:07:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=bfcf32237e32b46cba7ce2f9bcd36482978f8dd8'/>
<id>bfcf32237e32b46cba7ce2f9bcd36482978f8dd8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve bug #72017</title>
<updated>2016-05-16T17:15:40+00:00</updated>
<author>
<name>Thomas Punt</name>
<email>tpunt@hotmail.co.uk</email>
</author>
<published>2016-04-15T22:13:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=39052d4d750ee0b7e56fd39edecd860b1a37ac57'/>
<id>39052d4d750ee0b7e56fd39edecd860b1a37ac57</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #72116 (7.0.6 array_fill optimization breaks implementation)</title>
<updated>2016-04-28T09:02:47+00:00</updated>
<author>
<name>Bob Weinand</name>
<email>bobwei9@hotmail.com</email>
</author>
<published>2016-04-28T09:02:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=74ef863f5d83c8ab7377eb7ca27a6ffc4b7502ae'/>
<id>74ef863f5d83c8ab7377eb7ca27a6ffc4b7502ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use symtable lookup for arrays in array_column</title>
<updated>2016-04-16T07:59:01+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-04-16T07:56:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d8590940a19cdf5039c9ee52c901b2e4a9f9d769'/>
<id>d8590940a19cdf5039c9ee52c901b2e4a9f9d769</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Respect property visibility in array_column</title>
<updated>2016-04-16T07:59:01+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-04-16T07:52:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=28801bf249f113b6a25e43688fabcebb67a22df5'/>
<id>28801bf249f113b6a25e43688fabcebb67a22df5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #72031</title>
<updated>2016-04-16T07:58:57+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-04-15T14:28:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c0d8dc5bd701aad68692f91334a46c1fa46a6d1e'/>
<id>c0d8dc5bd701aad68692f91334a46c1fa46a6d1e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #71334</title>
<updated>2016-03-30T20:49:27+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikic@php.net</email>
</author>
<published>2016-01-12T15:31:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=b1e854f7762b2e0648ddc240835cb446ee4d20a7'/>
<id>b1e854f7762b2e0648ddc240835cb446ee4d20a7</id>
<content type='text'>
Always duplicate the array before doing a sort with user-defined
comparison function, to avoid access to the intermediate
inconsistent state.

I've also dropped the "array modification" warning, as protection
against modifications is no longer relevant if we're always working
on a copy anyway.

This also required some changes to how SplArray forwards calls to
sorting functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Always duplicate the array before doing a sort with user-defined
comparison function, to avoid access to the intermediate
inconsistent state.

I've also dropped the "array modification" warning, as protection
against modifications is no longer relevant if we're always working
on a copy anyway.

This also required some changes to how SplArray forwards calls to
sorting functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #71837 (Wrong arrays behaviour)</title>
<updated>2016-03-17T14:41:41+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2016-03-17T14:41:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=345ecd9822820a54134bd53a6e449e1f22612e19'/>
<id>345ecd9822820a54134bd53a6e449e1f22612e19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #71660 (array_column behaves incorrectly after foreach by reference)</title>
<updated>2016-02-25T08:07:22+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2016-02-25T08:07:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c299b272c77b9bea4d6371a37a6d2b894f9729e8'/>
<id>c299b272c77b9bea4d6371a37a6d2b894f9729e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug #71603 (compact() maintains references in php7)</title>
<updated>2016-02-16T03:02:57+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2016-02-16T03:02:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=0fccd154bdb27476289bab18a9112fb7b20ae607'/>
<id>0fccd154bdb27476289bab18a9112fb7b20ae607</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
