Sun Jun 19, 2005 3:21 am |
Replies: 9 |
Views: 7455 |
|
 |
Hi ddmitrie,
try it with Linux and phped 3.3.3 (build 3376). It won't work.
Volker
|
Sun Jun 12, 2005 2:33 am |
Replies: 9 |
Views: 7455 |
|
 |
Strings in PHP are always binary and are never terminated by 'x00'. The function, which is used to handle the string decides, how to create or use a string. That's why the PHP-documentators differenti ...
|
Wed Jun 08, 2005 7:30 am |
Replies: 9 |
Views: 7455 |
|
 |
What about "binary safe" strings, where a "\x00" does'nt terminate a string? bin2hex($s) works and returns the correct values starting with 00. So I don't think it's a PHP bug. Its more a bug of phped ...
|
Wed Jun 08, 2005 3:28 am |
Replies: 9 |
Views: 7455 |
|
 |
Hi,
using PHP-4.3.6 with PHPEd 3.3.3 under Linux debugging CLI-applications the following problem occurs:
$s = "HALLO";
// $s is now visible in debugger-window "Locals"
$s[0] = "\x00";
// $s is ...
|