문제

I have the following piece of code written in C++.

But I'm converting my application to php, just to learning purpose.

And I have this small piece of code.

#define NETWORKMESSAGE_MAXSIZE 16384
unsigned char m_MsgBuf[NETWORKMESSAGE_MAXSIZE];

How I can reproduce this same code on PHP?

도움이 되었습니까?

해결책

As here : W3

You can use PHP pack() Function like this :

<?php
echo pack("C3",80,72,80);
?> 

And

<?php
echo pack("C*",80,72,80);
?>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top