php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #80382 function():object{} cannot return a stdclass instance
Submitted: 2020-11-19 10:21 UTC Modified: 2020-11-19 16:01 UTC
From: 982144218 at qq dot com Assigned: sjon (profile)
Status: Closed Package: *Programming Data Structures
PHP Version: 7.1.9 OS: Win 10
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: 982144218 at qq dot com
New email:
PHP Version: OS:

 

 [2020-11-19 10:21 UTC] 982144218 at qq dot com
Description:
------------
public static function decodeIdentityToken(string $identityToken) : object {
        $publicKeyKid = JWT::getPublicKeyKid($identityToken);

        $publicKeyData = self::fetchPublicKey($publicKeyKid);

        $publicKey = $publicKeyData['publicKey'];
        $alg = $publicKeyData['alg'];

        $payload = JWT::decode($identityToken, $publicKey, [$alg]);

        return $payload;
    }

Test script:
---------------
在7.1.9版本中return无法返回object(stdClass)类型,在7.3.9版本中可以使用


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-11-19 10:37 UTC] cmb@php.net
-Status: Open +Status: Feedback
 [2020-11-19 10:37 UTC] cmb@php.net
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.

If it is about the `: object` return type: yes, this is only
available as of PHP 7.2.0:
<https://www.php.net/manual/en/migration72.new-features.php#migration72.new-features.object-type>
 [2020-11-19 10:41 UTC] daverandom@php.net
-Status: Feedback +Status: Spam
 [2020-11-19 15:50 UTC] cmb@php.net
-Summary: 返回值问题 +Summary: Hidden because of SPAM -Status: Spam +Status: Re-Opened
 [2020-11-19 16:01 UTC] sjon@php.net
-Summary: Hidden because of SPAM +Summary: function():object{} cannot return a stdclass instance -Status: Re-Opened +Status: Closed -PHP Version: 7.2.34 +PHP Version: 7.1.9 -Assigned To: +Assigned To: sjon
 [2020-11-19 16:01 UTC] sjon@php.net
See https://3v4l.org/b7EI6 for a simplified testcase. This is a known issue, the "object type annotation" was added in 7.2

As you can see here: https://www.php.net/eol.php PHP 7.1 is End Of Life, meaning it no longer receives updates. I suggest you update to PHP 7.2
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 08:01:28 2024 UTC