add description for e,E,g,G for pack and unpack

-- 
Provided by anonymous 82900 (sskaje@gmail.com)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@342601 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jean-Sebastien Hedde 2017-06-16 12:45:27 +00:00
parent b586dc07ba
commit c51f2e7096

View file

@ -137,10 +137,26 @@
<entry>f</entry>
<entry>float (machine dependent size and representation)</entry>
</row>
<row>
<entry>g</entry>
<entry>float (machine dependent size, little endian byte order)</entry>
</row>
<row>
<entry>G</entry>
<entry>float (machine dependent size, big endian byte order)</entry>
</row>
<row>
<entry>d</entry>
<entry>double (machine dependent size and representation)</entry>
</row>
<row>
<entry>e</entry>
<entry>double (machine dependent size, little endian byte order)</entry>
</row>
<row>
<entry>E</entry>
<entry>double (machine dependent size, big endian byte order)</entry>
</row>
<row>
<entry>x</entry>
<entry>NUL byte</entry>
@ -193,6 +209,12 @@
</row>
</thead>
<tbody>
<row>
<entry>7.0.15,7.1.1</entry>
<entry>
The "e", "E", "g" and "G" codes were added to enable byte order support for float and double.
</entry>
</row>
<row>
<entry>5.6.3</entry>
<entry>