|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-08-12 13:51 UTC] johannes@php.net
[2007-08-20 01:00 UTC] php-bugs at lists dot php dot net
[2007-10-15 21:27 UTC] marc dot bau at gmx dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 03:00:01 2025 UTC |
Description: ------------ PHP 5.2.3 bug in processing commentary code: $my_var='1'; function my_fun() {//my text (I use russian) GLOBAL $my_var; $var=$my_var; echo $var; } my_fun(); return: Notice: Undefined variable: $my_var ....... (don't job "GLOBAL") but if replace //my text to /* my text */ return: 1