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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:23:15+00:00 2026-06-07T15:23:15+00:00

Normally, I would have to do: $str = classname; //classname is the name of

  • 0

Normally, I would have to do:

$str = "classname"; //classname is the name of a class

switch($str)
{
  case "class1":
    class1::run(); break;
  case "class2":
    class2::run(); break;
  case "class3":
    class3::run(); break;
  case "class4":
    class4::run(); break;
  case "classname":
    classname::run(); break;
  default:
    die("Fatal error: no such class");
}
//in my case, there are hundreds of cases and more being added

Is there a way of simplifying this, perhaps in one line? Wishful thinking?

$str::run()

Of course, it would be my responsibility to make sure $str is actually the name of an object. But managing that would be much easier than managing a huge list like above.

Is this possible?

  • 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-07T15:23:17+00:00Added an answer on June 7, 2026 at 3:23 pm

    Yes; as you guessed, $str::run(); works.

    php> class A { public static function run() { echo "A!"; } }
    
    php> class B { public static function run() { echo "B!"; } }
    
    php> $n = "A";
    
    php> $n::run();
    A!
    php> $n = "B";
    
    php> $n::run();
    B!
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Normally I would have one junit test that shows up in my integration server
I have this code that where I would normally use one line: if (tableView
If I have a table of a hundred users normally I would just set
I have to remove a branch from svn history for good. Normally I would
Normally if I'd like to have an Erlang process timeout I would use the
I have identified the query constructs my users normally use. Would it make sense
Normally I would go: bgwExportGrid.RunWorkerCompleted += ReportManager.RunWorkerCompleted; The ReportManager class is a static class
Normally I would just do this. $str = preg_replace('#(\d+)#', ' $1 ', $str); If
Normally I would do this: public class DBFactory { public UserDAO GetUserDao() { return
Normally you would have a single ErrorProvider for all the controls on a form;

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.