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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:37:11+00:00 2026-06-15T08:37:11+00:00

base class: abstract class Challenge { abstract **static** public function getName(); } now two

  • 0

base class:

abstract class Challenge
{
    abstract **static** public function getName();
}

now two classes from it:

class ChallengeType1 extends Challenge
{
    public **static** function getName()
    {
        return 'Swimming';
    }
}

class ChallengeType2 extends Challenge
{
    public **static** function getName()
    {
        return 'Climbing';
    }
}

as you all might know, we can’t use static, but it would be reasonable. So I can’t do like that: for example, I have the classname, so I want to know it’s name: ChallengeType2::getName(); – it will fail! First I should construct the object – looks unnecessary (not to mention, what it this class have very complex initialization?)

  • 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-15T08:37:12+00:00Added an answer on June 15, 2026 at 8:37 am

    Turns out you cannot have static abstract methods on an abstract class. See here:

    Why does PHP 5.2+ disallow abstract static class methods?

    But you can declare an interface to require a static method.

    Here is an example that compiles:

    Working Example

    <?php
    interface IChallenge
    {
        static function getName();
    }
    
    abstract class Challenge implements IChallenge
    {
    
    }
    
    class ChallengeType1 extends Challenge
    {
        public static function getName()
        {
            return 'Swimming';
        }
    }
    
    class ChallengeType2 extends Challenge
    {
        public static function getName()
        {
            return 'Climbing';
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

abstract class base { abstract public function test(); public function run() { self::test(); }
abstract class Base{ protected abstract void a(); } class Child extends Base{ @Override public
I have my own base abstract class which extends Activity class. public abstract class
Given the following: public abstract class Base { // other stuff public static void
I have an empty abstract base class: public abstract class base{ } and two
I have an abstract base class from which many classes are derived. I want
abstract class Base {} class A extends Base class B extends Base How do
I have an abstract base class and want to implement a function in the
I have an abstract base class class AbstractClass { Col<AbstractClass> parent public AbstractClass() {
I have an abstract base class that holds a Dictionary. I'd like inherited classes

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.