PHP, getting variable from another php-file

前端 未结 4 570
遥遥无期
遥遥无期 2020-11-27 04:18

So I wonder if it is possible to get a variable from a specific php-file when the variable-name is used in multiple php-file. An example is this:



        
相关标签:
4条回答
  • 2020-11-27 04:46

    You could also use file_get_contents

     $url_a="http://127.0.0.1/get_value.php?line=a&shift=1&tgl=2017-01-01";
     $data_a=file_get_contents($url_a);
    
     echo $data_a;
    
    0 讨论(0)
  • 2020-11-27 04:53

    You can, but the variable in your last include will overwrite the variable in your first one:

    myfile.php

    $var = 'test';
    

    mysecondfile.php

    $var = 'tester';
    

    test.php

    include 'myfile.php';
    echo $var;
    
    include 'mysecondfile.php';
    echo $var;
    

    Output:

    test

    tester

    I suggest using different variable names.

    0 讨论(0)
  • 2020-11-27 04:59

    You could also use a session for passing small bits of info. You will need to have session_start(); at the top of the PHP pages that use the session else the variables will not be accessable

    page1.php

    <?php
    
       session_start();
       $_SESSION['superhero'] = "batman";
    
    ?>
    <a href="page2.php" title="">Go to the other page</a>
    

    page2.php

    <?php 
    
       session_start(); // this NEEDS TO BE AT THE TOP of the page before any output etc
       echo $_SESSION['superhero'];
    
    ?>
    
    0 讨论(0)
  • 2020-11-27 04:59

    using include 'page1.php' in second page is one option but it can generate warnings and errors of undefined variables.
    Three methods by which you can use variables of one php file in another php file:

    • use session to pass variable from one page to another
      method:
      first you have to start the session in both the files using php command

      sesssion_start();
      then in first file consider you have one variable
      $x='var1';

      now assign value of $x to a session variable using this:
      $_SESSION['var']=$x;
      now getting value in any another php file:
      $y=$_SESSION['var'];//$y is any declared variable

    • using get method and getting variables on clicking a link
      method

      <a href="page2.php?variable1=value1&variable2=value2">clickme</a>
      getting values in page2.php file by $_GET function:
      $x=$_GET['variable1'];//value1 be stored in $x
      $y=$_GET['variable2'];//vale2 be stored in $y

    • if you want to pass variable value using button then u can use it by following method:

      $x='value1'
      <input type="submit" name='btn1' value='.$x.'/>
      in second php
      $var=$_POST['btn1'];

    0 讨论(0)
提交回复
热议问题