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

  • Home
  • SEARCH
  • 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 460521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:52:55+00:00 2026-05-12T22:52:55+00:00

hello i’m trying to save the values of a SimpleXMLElement to a $_SESSION but

  • 0

hello i’m trying to save the values of a SimpleXMLElement to a $_SESSION but the values are entered as “SimpleXMLElement Object”. code below:

$xml = new SimpleXMLElement($auth_info);
$_SESSION[userName] = $xml->profile->preferredUsername; (garfx)
$_SESSION[email] =  $xml->profile->verifiedEmail;
$_SESSION[givenName] =  $xml->profile->name->givenName;
$_SESSION[lastName] =  $xml->profile->name->familyName;

results example

Array
(
[userName] => SimpleXMLElement Object
()
)

i would like

Array
(
[userName] => garfx

)
  • 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-12T22:52:55+00:00Added an answer on May 12, 2026 at 10:52 pm

    SimpleXML elements can be used as strings, but you need to “cast” them to a string.

    Casting in PHP is done by prefixing the data type to a value,

    so for example,

    $foo = 1;
    $bar = (string)$foo;
    

    Would make $bar be a string containing the character “1”.

    The solution for the above would be:-

    $xml = new SimpleXMLElement($auth_info);
    $_SESSION[userName] = (string)$xml->profile->preferredUsername; // (garfx)
    $_SESSION[email] = (string)$xml->profile->verifiedEmail;
    $_SESSION[givenName] = (string)$xml->profile->name->givenName;
    $_SESSION[lastName] = (string)$xml->profile->name->familyName;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hello creating a custom object may be a widely published topic, but my lack
Hello i have this code var queue = new BlockingCollection<int>(); queue.Add(0); var producers =
Hello There, I am new to phonegap.I am trying to record a audio clip
Hello I am trying to create a stacked barplot using the following code: test
Hello I am trying to do a SOAP request here is my code: #
Hello all i have the code below which produces four wheels each with the
Hello! I've been programming for a long time but just started developing for android,
Hello everyone i am trying to format the input number range with php number_format
hello friends i am trying to get a list of user id and want
Hello Guys I am trying to figure out why i am gettings this error

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.