Tagged Questions
0
votes
0answers
54 views
What is the most accurate method for converting byte input to a decimal range in PHP?
I have gathered three different functions for pulling random values from sources (mcrypt, openssl, and /dev/urandom). Each has a different way of 'fitting' byte inputs into a decimal range. For the ...
0
votes
1answer
43 views
Which is the best charset to pass data to php?
In my Java App, I want to pass individual bytes of information to a php script via POST. In order to do that, I convert the byte[] into a String.
Now, which charset is best for this operation? I want ...
-1
votes
3answers
83 views
Why are null bytes not working? [closed]
I have created a simple website based on my knowledge but I discovered that it suffers from a Local File Inclusion (LFI) vulnerability. I want to test exploiting it on my computer but whenever I try ...
-1
votes
3answers
53 views
php how to shorten the file size from Byte unit to larger unit without number rounding
Let I take an example to explain it which I expect.
Example:
I have file size '3147483648 Bytes', and I want to convert it to following appropriate file size:
2 GB + 70 MB + 333 KB + 512 Bytes.
Any ...
0
votes
0answers
119 views
PHP fread limited to 8192 bytes
Cordial Greetings,
I want to know, why I need to specify the reading from file max allowed as 8192 bytes?
$BytesFile .= fread($fis, 8192);
or
$Enunciado->send_long_data(3, ...
3
votes
1answer
121 views
Read single bytes from socket stream in PHP
$data = socket_read($this->socket, 5);
$counter = strlen($data);
for($i = 0; $i < $counter; ++$i) {
$char = (int)$data[$i];
echo "\nByte $i: $char\n";
}
The ...
-2
votes
1answer
74 views
PHP Get String Text From Bytes [closed]
I was wondering how one would get the Text representation of a series of bytes in PHP? (Basically, the PHP version of C#'s Encoding.getString(string s) method.)
I've been scouring google, and I can ...
0
votes
0answers
81 views
Byte and Signed Short Integer in PHP
I want to send a udp packet in php. I am using mac os x 10.6.
My problem is that I want to send current time separately in hours and minutes, taking one byte each but I could not find the way how to ...
0
votes
1answer
112 views
PHP script to delete zero byte files
it's been awhile since I asked a question here - you've done a decent job of teaching me. ; )
Anyway, I'm having a problem with zero byte files. Sometimes, randomly it seems, the server I'm working ...
5
votes
1answer
356 views
php null byte injection? [closed]
$num = $_GET['fileid']; // get file id
$realfile = "filename".$num.'.txt';
My question is that is it still possible to null poison this? .'.txt' at the end does not ...
0
votes
1answer
50 views
Save encoded data in java to a file using php (java , php)
I want to send files data from Java to PHP and then the php saves the data to a file .
here's my code :
the java code :
byte[] data=...
str = new String(data,"ISO-8859-1"); //convert data to ...
-6
votes
2answers
1k views
PHP convert KB MB GB TB etc to Bytes
I'm asking how to convert KB MB GB TB & co. into bytes.
For example:
byteconvert("10KB") // => 10240
byteconvert("10.5KB") // => 10752
byteconvert("1GB") // => 1073741824
...
1
vote
1answer
153 views
Unpack by bits in PHP
I want to unpack a binary string into into an array by a weird sequence of 8-8-8-7 bits.
I could easily do something like this, for a normal 8-8-8-8 sequence:
$b=unpack('C*',$data);
for ...
1
vote
1answer
218 views
base64_decode omits one byte
I'm using PHP's base64_decode on this string:
Dg+to8RaC3VzAGRThP7iiXe0f5bgp7xmcQoqaAJxggs=
and it should return 32 bytes of data.
But somehow I end up with a string thats only 31 bytes long.
This ...
2
votes
2answers
375 views
how to send byte array from php
I'm trying to send byte array of image to my webservice in json object.But, It the request never hits my server. If I send just an empty array it hits the server and returns the json response. Below ...
0
votes
1answer
275 views
Limiting a string to to 256 bytes
I currently have:
$payload = array();
$payload['aps']['badge'] = 1;
$payload['aps']['alert'] = html_entity_decode($title);
$payload['aps']['sound'] = "default";
But:
The maximum size allowed ...
1
vote
1answer
1k views
uploading image and php POST method in windows phone
this is my first post. please be kind :)
i'm trying to get picture from media library (in WP 7), upload it using httpwebrequest, and save it to folder in the server. i succeed to convert the image to ...
1
vote
0answers
165 views
Read Guitar Pro files with php
I want to parse guitar pro files using php. I came across this question which directed me to a description of the gp4 format.
As I understand, the file is highly readable :), I just need to know the ...
0
votes
1answer
266 views
Php script to write and read word and byte
I have an eeprom that I control with a php script.
I can control the parameters of this eeprom reading and writing words (16 bit), some of these can control two different parameters with the ...
0
votes
2answers
223 views
PHP - How to construct and write a byte to a binary file
I'm trying to write a byte in binary to a file.
I have the binary byte (8 bits) as a string, e.g. "01100101"
How do I write this as one byte in PHP? When I fopen with "wb" it still writes it in ...
-3
votes
1answer
121 views
Combine bytes php
I need equivalent of this part (in C++), but on PHP:
unsigned char arr[ 2 ];
arr[ 0 ] = 0x04;
arr[ 1 ] = 0x00;
unsigned short shape_types;
memcpy( &shape_types, arr, 2 )
Maybe somebody knows a ...
0
votes
2answers
664 views
PHP - Convert single byte to Integer (PCX Graphic Format)
I'm working on a project that involves talking directly with Zebra printers. Currently, I am trying to convert images to the GRF format using something called "ztools". ZTools appears to be ancient ...
0
votes
2answers
228 views
Get bytes from stream with php
I know that streaming flv with php is possible, there are libraries out there for that but my question is, is it possible to get bytes from flv stream and use them to draw sound wave shape and export ...
2
votes
3answers
410 views
get byte value from shorthand byte notation in php.ini
Is there any way to get the byte values from the strings returned from functions like ini_get('upload_max_filesize') and ini_get('post_max_size') when they are using shorthand byte notation? For ...
9
votes
2answers
2k views
How do I find out how many bytes a character has?
I was wondering how do I find out how many bytes does a character have?
0
votes
2answers
438 views
Reading top nibble and bottom nibble in a byte
What's the correct way to handle two distinct values being stored in one byte of data. I have a byte that contains two nibbles each containing their own data. I want to read the top nibble and the ...
6
votes
3answers
2k views
Byte manipulation in PHP
In PHP, if you have a variable with binary data, how do you get specific bytes from the data? For example, if I have some data that is 30 bytes long, how do I get the first 8 bytes?
Right now, I'm ...
2
votes
3answers
1k views
php convert to byte ,
In Java, I can easily cast a number to a byte, for example:
System.err.println((byte) 13020);
the result will be
-36
Now how can I achieve the same in PHP?
1
vote
2answers
148 views
What is PHP for C# ReadBytes(stream langth)?
What is PHP for C# (asuming we open some local (on server) file instead of OpenFileDialog
private const int HEADER_LENGTH = 13;
stream = File.OpenRead(openFileDialog.FileName);
...
1
vote
1answer
859 views
how to create in PHP analog of C# ' private const int ' and ' private const byte '?
So in C# I create something like
private const int HEADER_LENGTH = 13;
private const byte SIGNATURE1 = 0x46;
How to create its analog in PHP?
0
votes
2answers
521 views
Add bytes to binary file using only PHP?
I am trying to add random bytes to binary (.exe) files to increase it size using php.
So far I got this:
function junk($bs)
{
// string length: 256 chars
$tmp = ...
0
votes
2answers
2k views
Converting hexadecimal to byte in php
I am very new to PHP
I want to create a byte array something like this (in Java):
byte array[] = { (byte) 0x9C, (byte) 0xA0};
How do I do it in PHP? Any syntactical help highly apreciated.
0
votes
2answers
563 views
C# to php translator
Is there a C# to php translator (capable of dealing with byte operations, TCPSockets)?
1
vote
3answers
2k views
bytes convert to float (php)
How can I convert from bytes to float in php? Like in Java
int i = (byte3 & 0xff) << 24 | (byte2 & 0xff) << 16 | (byte1 & 0xff) << 8 | byte0 & 0xff;
...
1
vote
2answers
164 views
method readUnsignedByte in PHP
how get UnsignedBytes in php? In java very easy: readUnsignedByte (Java)
1
vote
1answer
522 views
New byte in php
I have code JAVA
byte abyte1[] = new byte[k];
But php not have byte type. Its possible to convert this line to php?
1
vote
3answers
3k views
How to write byte by byte to socket in PHP?
How to write byte by byte to socket in PHP?
For example how can I do something like:
socket_write($socket,$msg.14.56.255.11.7.89.152,strlen($msg)+7);
The pseudo code concatenated digits are ...
3
votes
6answers
5k views
How do I find the number of bytes within UTF-8 string with PHP?
I have the following function from the php.net site to determine the # of bytes in an ASCII and UTF-8 string:
<?php
/**
* Count the number of bytes of a given string.
* Input string is ...
0
votes
6answers
342 views
How to change the allowed amout of allocated memory?
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 40000 bytes) in /mounted-storage/home20a/sub001/sc20063-GJYD/[...] on line 62
It looks like the PHP-script only allowes ...
0
votes
4answers
513 views
Converting random byte (0-255) to a float in PHP?
I am reading random bytes from /dev/urandom, and I want to make a random float out of it/them. How would I do this? I can convert the byte to a number with ord(), and it's between 0 and 255.
It's ...
2
votes
2answers
1k views
PHP - determine how many bytes sent over http
Is it possible in PHP to get a count of the number of bytes transmitted to the client? For example, if I'm outputting a 10 MB file, is there a way to find out if all 10 MB were sent to the client, or ...
3
votes
4answers
888 views
PHP Bytes 2 DWord
I have an array:
$arr[0] = 95
$arr[1] = 8
$arr[2] = 0
$arr[3] = 0
That are bytes. I need a DWORD.
I tried:
$dword = $arr[0]+$arr[1]*265+$arr[2]*265*265+$arr[3]*265*265*265;
Is that right or am ...

