|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-10-21 06:24 UTC] bugs dot php dot net at ignaciollorente dot com
[2020-10-21 06:25 UTC] sjon@php.net
-Status: Open
+Status: Not a bug
[2020-10-21 06:25 UTC] sjon@php.net
[2020-10-21 06:26 UTC] requinix@php.net
-Package: Compile Failure
+Package: *General Issues
[2020-10-21 06:26 UTC] requinix@php.net
[2020-10-21 06:33 UTC] bugs dot php dot net at ignaciollorente dot com
-Summary: Can't us defined "Fn"
+Summary: Can't use defined "Fn"
[2020-10-21 06:33 UTC] bugs dot php dot net at ignaciollorente dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 14:00:01 2025 UTC |
Description: ------------ The word Fn can used after defined. It gives a syntax error. Test script: --------------- <?php define("Fn","hola"); #Parse error: syntax error, unexpected ';', expecting '(' in xxxx on line 4 echo Fn; ?>