php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11040 Array does not return class from get_class()
Submitted: 2001-05-22 23:15 UTC Modified: 2001-05-22 23:17 UTC
From: geneva1999 at yahoo dot com Assigned:
Status: Not a bug Package: *Function Specific
PHP Version: 4.0.5 OS: Sun Solaris 2.6
Private report: No CVE-ID: None
 [2001-05-22 23:15 UTC] geneva1999 at yahoo dot com
$arr = Array();
$arr[0] = 5;
$arr[1] = 3;

$cl = get_class($arr);



if($cl == "") print "error: get_class returned nothing";

//  the if statment is true, and error is printed.
//   I tried this on a Linux 2.2 server and $cl = "Array"

// BUT:  If you do this:"
print $arr;
//  "Array" will display in the browser.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 20:01:31 2024 UTC