|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-01-10 08:20 UTC] cataphract@php.net
[2012-01-10 08:20 UTC] cataphract@php.net
-Status: Open
+Status: Bogus
[2012-01-10 08:44 UTC] hfcorriez at gmail dot com
[2012-08-15 03:30 UTC] a at b dot c dot de
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 19:00:01 2025 UTC |
Description: ------------ I create a lambda function with a variable, then check it type with gettype , it's return "object", It think it's not good in here. Test script: --------------- $a = function(){}; $b = new stdClass(); echo gettype($a) . '|' . gettype($b); // echo 'object|object'