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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:31:14+00:00 2026-06-17T20:31:14+00:00

Possible Duplicate: Can I include code into a PHP class? Include file in array

  • 0

Possible Duplicate:
Can I include code into a PHP class?
Include file in array

I have this php code

   <?php
   class Config {

   public static $__routes = array(

   "Home"                    => "index.php",
   "Support"                 => "support.php",
   "Ads"                     => "ads.php",

   );

   }

   ?>

and i have ex.php file like this

"Upgrade"                 => "upgrade.php",
"Faq"                     => "faq.php",
"Tos"                     => "tos.php",

I want to include ex.php file in “public static $__routes array” which in “class”

Something to be like

   <?php
   class Config {

   public static $__routes = array(

   "Home"                    => "index.php",
   "Support"                 => "support.php",
   "Ads"                     => "ads.php",

   include 'ex.php';

   );

   }

   ?>

Please how i can do that ?

  • 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-17T20:31:15+00:00Added an answer on June 17, 2026 at 8:31 pm

    You can’t and I already explained why in your last question:

    Each file must be valid PHP code on its own, because the include only
    happens at runtime (i.e. when this exact line of code is reached), not
    at parse time (i.e. when the file is loaded)

    Now what’s different here is that the alternative solutions do not work because you cannot initialize class properties with expressions (i.e. A + B), only with literals (scalar values and arrays of scalar values)

    Since the property is static, you can’t even use a constructor, you will have to assign it outside of the class:

    class Config {
    
       public static $__routes = array(
    
           "Home"                    => "index.php",
           "Support"                 => "support.php",
           "Ads"                     => "ads.php",
    
       );
    
       // ...
    }
    
    Config::__routes += (include 'example.php');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: C/C++, can you #include a file into a string literal? I have
Possible Duplicate: get name of current PHP script in include file Can an included
Possible Duplicate: How can I use C++ code to interact with PHP? I have
Possible Duplicate: error using include_once with a php variable My code is like this:
Possible Duplicate: Max Array Size in C My question is: Does Code::blocks have a
Possible Duplicate: Stack overflow visual C++, potentially array size? This code is simply meant
Possible Duplicate: Can a local variable’s memory be accessed outside its scope? Code: #include
Possible Duplicate: Can main function call itself in C++? I found this problem very
Possible Duplicate: Can I scroll a ScrollView programmatically in Android? I have a chat
Possible Duplicate: Can I comment a JSON file? We are using a .json file

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.