ID: 29279 Comment by: ccheeboon at yahoo dot com Reported By: milky at users dot sf dot net Status: No Feedback Bug Type: Strings related Operating System: Linux, glibc2.3 PHP Version: 5.0.0 New Comment:
to reproduce: File: open_target.php, contain only below code: <?php echo "1"; ?> File: test.php, contain the following code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php if( isset($_POST['remove_subscriber_form']) ) {//if form submitted $u_phone =rawurlencode ( $_POST['phone'] ); $u_shortcode = rawurlencode( $_POST['shortcode'] ); $u_keyword = rawurlencode( $_POST['keyword'] ); $u_timestamp = rawurlencode( $_POST['timestamp'] ); $loadurl = "http://www.mysite/"; $a = fopen($loadurl."open_target.php?phone=$u_phone&shortcode=$u_shortcode&keyword=$u_keyword×tamp=$u_timestamp","r"); $tmp = ""; while( $b=fread($a,100) ) { $tmp .= $b; } echo "affected subscriber=(".$tmp.")<br />"; fclose($a); flush; } ?> </body> </html> ///////////// upload both file to ur server. NOTE: you have to change $loadurl to according to ur server. RUNNING test.php when open_target.php [echo "0";],the zero do not appear. However if target.php [echo "-1";] or other, the echo content appear. Previous Comments: ------------------------------------------------------------------------ [2004-08-05 01:00:04] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2004-07-28 12:21:34] [email protected] Not enough information was provided for us to be able to handle this bug. Please re-read the instructions at http://bugs.php.net/how-to-report.php If you can provide more information, feel free to add it to this bug and change the status back to "Open". Thank you for your interest in PHP. Any log entries? Any reproduce script? ------------------------------------------------------------------------ [2004-07-20 13:47:53] milky at users dot sf dot net Description: ------------ (Hard to reproduce.) In one of my scripts any variant of outputting a variable set to (string) "0" ended the output. Appearantly happened for var_dump(), print_r(), echo() and print(). Initially it appeared to be a pcre problem: $_SERVER["QUERY_STRING"] = "q=example&s=0&s=1&s=7"; preg_match_all('/&s=(\d+)/', $_SERVER["QUERY_STRING"], $uu); echo implode(" ", $uu[1]); But it probably isn't. Appears that earlier parts of any of the other included scripts changed interpreter behaviour and lead to the strange effect. It seems not configuration-related or to be a general bug, as the same <?php echo "0";' ?> gives no problem in short scripts. Only fails in CGI environment, doesn't happen on cmdline. same effect: - echo "0"; - echo '0'; OTH this doesn't output anything strange (binary): - echo "1"; Not sure, if this is a bug at all. The "0" breaks also with 5rc2, 4.3.x and down to 4.1.2 (all in -cgi/fcgi incarnation) But btw: echo "\000"; echo "+++"; echo "0"; echo "..."; will correctly return the ^...@+++ but nothing after that. related to #16388 ? Reproduce code: --------------- <?php //... #... # include("htm/head"); # contains no php code echo "0"; # ends output // more code follows #... (all other code and include()s being commented out to reproduce) ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=29279&edit=1
