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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:35:51+00:00 2026-05-20T12:35:51+00:00

Not sure the best way of phrasing this so bear with me. Within Codeigniter

  • 0

Not sure the best way of phrasing this so bear with me.

Within Codeigniter I can return a record set of my object no problem but this is returned as a stdClass object not as an “model” object (for example a Page Object) which I can then use to make use of other methods within that model.

Am I missing a trick here? Or is this the standard functionality within CI?

  • 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-20T12:35:52+00:00Added an answer on May 20, 2026 at 12:35 pm

    Yes, basically in order for this to work you need to declare your Model objects properties class-wide, and refer to $this being the current model object.

    class Blogmodel extends CI_Model {
    
        var $title   = '';
        var $content = '';   // Declare Class wide Model properties
        var $date    = '';
    
        function __construct()
        {
            // Call the Model constructor
            parent::__construct();
        }
    
        function get_entry()
        {
            $query = $this->db->query('query to get single object');
            $db_row = $query->row();            //Get single record
    
            $this->title   = $db_row->title;
            $this->content = $db_row->content;  //Populate current instance of the Model
            $this->date    = $db_row->date;
    
            return $this;                       //Return the Model instance
        }
    }
    

    I believe get_entry() will return an object type Blogmodel.

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

Sidebar

Related Questions

I'm not sure the best way to word this question so bear with me.
Not sure if phrasing this right, seems simple but not sure best way to
I'm not sure if I'm phrasing this in the best way but I have
I find this comes up a lot, and I'm not sure the best way
Not sure the best way to explain this but i'll give it a shot.
Not sure of the best way to ask this question other than: I'm writing
Okay, so I'm not 100% sure what the best way to implement this is.
This should be easy, but I'm not sure how to best go about it.
Not sure the best way to phrase the question, but suppose you are using
I have a question and I'm not sure about the best way to design

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.