php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #22145 class static variable can't be an array
Submitted: 2003-02-10 04:14 UTC Modified: 2003-02-10 04:57 UTC
From: mickael dot bailly at free dot fr Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 5CVS-2003-02-10 (dev) OS: Linux
Private report: No CVE-ID: None
 [2003-02-10 04:14 UTC] mickael dot bailly at free dot fr
here is a script that reproduce the problem (tested with 
2002/02/10 cvs): 
 
<?PHP 
 
class test { 
  public static $foo = 'ok!'; 
} 
 
echo "test::\$foo ? "; 
print_r(test::$foo); 
echo "\n"; 
 
class test2 { 
 public static $foo = array(); 
} 
 
echo "test2::\$foo ? "; 
print_r(test2::$foo); 
echo "\n"; 
 
?> 
 
 
that outputs: 
test::$foo ? ok! 
test2::$foo ? Segmentation fault 
 
PHP configure line: 
./configure --prefix=/usr/local/php2 
--with-apxs=/usr/local/apache_php2/bin/apxs 
--with-mysql=/usr/local/mysql 
 
tested with PHP CLI. 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-02-10 04:16 UTC] mickael dot bailly at free dot fr
Note that this code works: 
 
<?PHP 
 
class test2 { 
 public static $foo = 'ok'; 
} 
 
test2::$foo = array(); 
 
echo "test2::\$foo ? "; 
print_r(test2::$foo); 
echo "\n"; 
 
?>
 [2003-02-10 04:57 UTC] stas@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

should be fixed now.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 10:01:30 2024 UTC