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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:49:24+00:00 2026-06-05T17:49:24+00:00

If I have three files index.php file.php and fns.php First example (it works): index.php

  • 0

If I have three files “index.php” “file.php” and “fns.php“

First example (it works):

index.php :

<?php
  $var = "Variable Data";
  include "file.php";
?>

file.php:

<?php
  var_dump($var);  #Output will be : string(13) "Variable Data"
?>

Second Example (it don’t work) :

index.php :

<?php
  include "fns.php";
  $var = "Variable Data";
  load("file.php");
?>

fns.php :

<?php
  function load($file) { include $file; }
?>

file.php

<?php
  var_dump($var); #Output will be : NULL
?>

How to include files using functions like load() and keep variables working without additional Global $var; ?

My Solution :

<?php
  function load($file)
  {
    $argc = func_num_args();
    if($argc>1) for($i=1;$i<$argc;$i++) global ${func_get_arg($i)};

    include $file;
  } 

  #Call :
  load("file.php", "var");
?>
  • 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-05T17:49:25+00:00Added an answer on June 5, 2026 at 5:49 pm

    Because you include the file inside of the function, the included file’s scope is that function’s scope.

    In order to include additional variables, inject them into the function.

    function load($file, $var) { include $file; }
    

    This way, $var will be available.


    You could even make things more dynamic:

    function load($file, $args) { extract($args); include($file); }
    

    And use it like this:

    load("path/to/file.php", array("var"=>$var, "otherVar"=>$otherVar));
    

    PHP will extract the variables into correct symbol names ($var, $otherVar).

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

Sidebar

Related Questions

I have these three files to work with: document_root/include/config.php document_root/include/database.php document_root/index.php And the relevant
I have three files, a main .cpp file: #include <stdio.h> #include myClass.h int main()
So, ok. I have many php files and one index.php file. All files can't
I have an index.php file that loads other php files via this javascript/ajax code:
I have three files; index.php, searchbar.php and search.php now when i have search.php show
I have three files: one called sql.php witch has a class db that I
I have three files in a folder 'test' one.php two.php print.html And i have
I have three files: movie.h (header); movie.cpp (implementation file); lab9.cpp (driver file using movie
Suppose that I have those three files: a.h //a.h header #include <stdio.h> int int_variable;
For example, if I have three ASCII files: file1.txt file2.txt file3.txt ...and I wanted

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.