|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-02-15 01:40 UTC] tony2001@php.net
[2005-02-23 01:00 UTC] php-bugs at lists dot php dot net
[2005-05-11 23:00 UTC] demjanich at yandex dot ru
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 14:00:01 2025 UTC |
Description: ------------ Hello! There is some problem in adding SESSID when "session.use_trans_sid" is enabled. See code bellow. Reproduce code: --------------- <?php ini_set('session.use_trans_sid','1'); session_start(); ?> <html> <body> <?php for ($i = 0; $i < 4055; $i ++) echo '0'; echo "\r\n<br />"; ?> <a href="<? echo 'index.php'; ?>" title="test">test</a> </body> </html> Expected result: ---------------- <html> <body> 000000 [... a lot of nulls] <br /><a href="index.php?PHPSESSID=8an47kimf5fd8i9pg7t5km1i64" title="test">test</a> </body> </html> Actual result: -------------- <html> <body> 000000[... a lot of nulls] <br /><a href="index.php" title=?PHPSESSID=8an47kimf5fd8i9pg7t5km1i64"test">test</a> </body> </html>