Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6367881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:36:19+00:00 2026-05-25T00:36:19+00:00

I feel really stupid right now. The following code should output ‘If you can

  • 0

I feel really stupid right now. The following code should output ‘If you can get this text to print, you’re neat!’, but it doesn’t. Any ideas?

<?php
$a = (Array) json_decode("{\"406\":\"If you can get this text to print, you're neat!\"}");
// dump($a);
echo $a[406]."\n";
echo $a["406"]."\n";
echo $a['"406"']."\n";
echo $a["'406'"]."\n";


$a = Array(406=>'Sanity check: this works, why don\'t any of the previous accessors work?');
// dump($a);
echo $a[406]."\n";


function dump($a) {
    foreach ($a as $k => $v) {
        echo "$k=>$v\n";
    }
}

?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:36:20+00:00Added an answer on May 25, 2026 at 12:36 am

    Your original example was returning an object because of a second optional parameter for return type that has the default of FALSE, or to return an object. This is how you would treat it…

    $a = json_decode("{\"406\":\"If you can get this text to print, you're neat!\"}", FALSE);
    echo $a->{"406"}; // If you can get this text to print, you're neat!
    

    A little tweaking and you can create an array instead…

    $a = json_decode("{\"406\":\"If you can get this text to print, you're neat!\"}", TRUE);
    echo $a["406"]; // If you can get this text to print, you're neat!
    

    … and you can reference $a as an array like you were originally attempting. Notice what was happening when you were trying to type cast the original object. Here’s a var_dump of the original array you created followed by the resulting array from using the optional TRUE parameter.

    array(1) { ["406"]=>  string(47) "If you can get this text to print, you're neat!" }
    array(1) { [406]=>  string(47) "If you can get this text to print, you're neat!" }
    

    Do you see how it was adding the quotes to your array key when you were type casting it from an object? This is why you weren’t able to return the correct value; because the array key had changed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well! I feel really stupid for this question, and I wholly don't mind if
I feel like I must be doing something really stupid. What can I do
ok... so I feel really stupid asking this question.. but just wondering about the
I'm feeling very, very stupid right now... I feel like I must be missing
I feel really stupid for asking a question like this, but I cannot seem
I feel really stupid asking for this, but remarkably I'm banging my head for
I feel really stupid for asking this but I have been thrashing for over
I really feel stupid for posting this but since i got no answers on
Ok I feel really stupid asking this. I see plenty of other questions that
I really feel that I should learn Lisp and there are plenty of good

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.