php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #17776 arrays incorrectly assigned "NULL" type
Submitted: 2002-06-15 16:59 UTC Modified: 2002-06-15 23:14 UTC
From: adam at adeptsoftware dot com Assigned:
Status: Not a bug Package: Arrays related
PHP Version: 4.1.2 OS: winxp
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
48 - 30 = ?
Subscribe to this entry?

 
 [2002-06-15 16:59 UTC] adam at adeptsoftware dot com
$Array = array();
gettype($Array) is NULL

$Array = (array)array();
gettype($Array) is NULL

$Array = array();
settype($Array, "array");
gettype($Array) is "array" finally

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-15 19:57 UTC] sniper@php.net
Can not reproduce with latest CVS. Please try PHP 4.2.1
Here's the script I used:

<?php

  $Array = array();
  echo gettype($Array);

?>

 [2002-06-15 23:14 UTC] adam at adeptsoftware dot com
Hmm it works now.  There appear to be other factors causing this.  I will see if I can figure it out.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 14:01:30 2024 UTC