П О Р Т А Л                            
С Е Т Е В Ы Х                          
П Р О Е К Т О В                        
  
Поиск по сайту:
                                                 
Главная

О проекте

Web-мастеру
     HTML & JavaScript
     SSI
     Perl
     PHP
     XML & XSLT
     Unix Shell

MySQL

Безопасность

Хостинг

Другое








Самое читаемое:

Учебник PHP - "Для Чайника".
Просмотров 4182 раз(а).

Иллюстрированный самоучитель по созданию сайтов.
Просмотров 6856 раз(а).

Учебник HTML.
Просмотров 3800 раз(а).

Руководство по PHP5.
Просмотров 6092 раз(а).

Хостинг через призму DNS.
Просмотров 4939 раз(а).

Подборка текстов стандартных документов.
Просмотров 56338 раз(а).

Учебник PHP - Самоучитель
Просмотров 3797 раз(а).

Документация на MySQL (учебник & справочное руководство)
Просмотров 8692 раз(а).

Внешние атаки...
Просмотров 4666 раз(а).

Учебник PHP.
Просмотров 3238 раз(а).

SSI в примерах.
Просмотров 243 раз(а).



 
 
| Добавить в избранное | Сделать стартовой | Помощь





Руководство по PHP
Пред. След.

unpack

(PHP 3, PHP 4, PHP 5)

unpack -- Unpack data from binary string

Description

array unpack ( string format, string data )

unpack() from binary string into array according to format. Returns array containing unpacked elements of binary string.

unpack() works slightly different from Perl as the unpacked data is stored in an associative array. To accomplish this you have to name the different format codes and separate them by a slash /.

Пример 1. unpack() example

<?php
$array
= unpack("c2chars/nint", $binarydata);
?>

The resulting array will contain the entries "chars1", "chars2" and "int".

Предостережение

Note that PHP internally stores integral values as signed. If you unpack a large unsigned long and it is of the same size as PHP internally stored values the result will be a negative number even though unsigned unpacking was specified.

See also pack() for an explanation of the format codes.



Если Вы не нашли что искали, то рекомендую воспользоваться поиском по сайту:
 





Copyright © 2005-2016 Project.Net.Ru