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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:02:20+00:00 2026-06-15T16:02:20+00:00

Say I have a class class person { public static function get_pk(){ return self::$primary_key;

  • 0

Say I have a class

class person {
    public static function get_pk(){
        return self::$primary_key;
    }
}

and an extended class

class user extends person {
    protected $primary_key = 'id';
}

and I want to run:

echo user::get_pk(); // should echo id

Whenever I run this it fails naturally since $primary_key is not a static variable. How do I get it to return the primary key?

Yes, I can change the class structure, function structure and make it non-static, but for all intents and purposes assume the only thing we can change is the content of the static function get_pk

  • 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-15T16:02:22+00:00Added an answer on June 15, 2026 at 4:02 pm

    The only way I can see this done is by declaring the $primary_key variable in the parent class and then assigning a value to it outside of the child class definition scope. (Notice, I’ve added abstract operators to indicate that the classes are static and capitalized the first letters of the class names to follow the convention.)

    <?
    
    abstract class Person {
        public static $primary_key;
        public static function get_pk() {
            return self::$primary_key;
        }
    }
    
    abstract class User extends Person {
    }
    
    User::$primary_key = 'id';
    echo User::get_pk();
    
    /* End of file */
    

    UPDATE

    Aram, if you want the $primary_key to stay non-static then the method will need to be non-static as well as “the pseudo-variable $this is not available inside the method declared as static” as per the Static Keyword manual.

    Alternatively you could convert your code to use instantiated class objects:

    <?
    
    class Person {
        public function get_pk() {
            return $this->primary_key;
        }
    }
    
    class User extends Person {
        protected $primary_key = 'id';
    }
    
    $user = new User();
    echo $user->get_pk();
    
    /* End of file */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I have a class like this: class Person { private $value; public function
Let's say we have a collection of Person objects class Person { public string
Let's say I have this entity (for Hibernate): @Entity public class Person { @Id
say I have: class Test { public static int Hello = 5; } This
let's say we have something like this public class Person { public string Name
Let's say I have: public class Fruit { public static List<String> Suppliers { get;
Lets say I have class Person { public Person(int age, string name) { Age
Say i have the following: public class Person{ public int ID {get; set;} public
Lets say I have this amputated Person class: class Person { public int Age
Lets say I have a set of model classes like this: public class Person

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.