|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-03-18 19:21 UTC] sniper@php.net
[2005-03-23 02:41 UTC] zxd at zhangxiaodong dot net
[2005-03-23 23:46 UTC] sniper@php.net
[2005-03-24 06:38 UTC] zxd at zhangxiaodong dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 15:00:02 2025 UTC |
Description: ------------ configure/make from a folder out of PHP package folder will success but fail when make install with error like syntax error, unexpected T_WHITESPACE in .../pear/install-pear.php. and sapi/cgi/php, sapi/cli/php will say same error on every script. Reproduce code: --------------- 1. tar xzf php-5.0.3.tar.gz 2. mkdir obj 3. cd obj 4. ../php-5.0.3/configure 5. make 6. find -name php 7. cd sapi/cgi 8. vi t.php as this: <?php echo "hello\n"; ?> 9. ./php t.php Expected result: ---------------- hello Actual result: -------------- Content-type: text/html X-Powered-By: PHP/5.0.3 <br /> <b>Parse error</b>: syntax error, unexpected T_WHITESPACE in <b>/root/obj/sapi/cgi/t.php</b> on line <b>3</b><br />