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 7778931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:31:21+00:00 2026-06-01T18:31:21+00:00

I have a string that I’m trying to use to create a class. I

  • 0

I have a string that I’m trying to use to create a class. I am trying to name each property and define its value based on the contents of the string. For example:

$mystring = "first_name=jane,last_name=doe";

$pieces = explode(",", $mystring);

foreach( $pieces as $key => $value){
    $eachvalue = explode("=",$value);

    class MyClass {  

        public $eachvalue['0'] = $eachvalue['1'];  

    }  

} // end foreach

$obj = new MyClass;

echo $obj->first_name; // Should echo "Jane"

I’m pretty new PHP classes, and this isn’t working. I don’t know if I’m close, or if I’m way off…?

  • 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-06-01T18:31:22+00:00Added an answer on June 1, 2026 at 6:31 pm

    The correct way would be:

    // Class definition
    class MyClass {  
    
        public $first_name;
        public $last_name;
    
    }
    
    $mystring = "first_name=jane,last_name=doe";
    
    // Instantiate the class
    $obj = new MyClass;
    
    // Assign values to the object properties
    $pieces = explode(",", $mystring);
    foreach ($pieces as $key => $value) {
      // this allows you to assign the properties dynamically
      list($name, $val) = explode("=", $value);
      $obj->$name = $val;
    } // end foreach
    
    echo $obj->first_name; // Should echo "Jane"
    

    A class can only be defined once – by putting it in the loop, you are declaring it on every iteration of the loop. Also, a class would not hold the values that you want in an instance of an object, it is a skeleton that describes how an object will be. So what you do is define the class, instantiate it, and then assign values to it.

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

Sidebar

Related Questions

I have a string that was converted to binary with Integer.toBinaryString() on each of
i have string MyText that hold L1 i have label control that his name
I have a String that I'm autowiring as a bean. The value for the
I have a string that looks like this: Name1=Value1;Name2=Value2;Name3=Value3 Is there a built-in class/function
I have a string that is HTML encoded: '''<img class="size-medium wp-image-113"\ style="margin-left: 15px;" title="su1"\
i have string (uri) that i need to decode in c++ , its have
I have a string that I use as url to a uiwebview with some
I have string variable that contain price. For example, 10000 . I want use
I have a string that looks like this $string = 'Name of product |
I have a string that ends with _[a number] e.g. _1 _12 etc etc.

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.