1

array を含む php ファイルがあります$myArray

<?php 
$myArray = array(
  'key1'=>'value1',
  'key2'=>'value2',
);
?>

key1その配列からの値を読み取る必要があります。key1ファイル全体を含めずに直接読み取る方法はありますか? 現在、私はこのようなインクルードを使用しています。

$includedArray = include('/path/to/myArray.php');

しかし、これは私にとって問題を引き起こしています。新しい名前の下に含めても、名前の競合を引き起こす$includedArray古い名前をまだ認識しているためです。$myArray

この問題を解決するには、含まれる配列を名前付き配列 ($myArray) から名前のない配列に変更しますが、含まれるファイルを変更できません。したがって、次のいずれかの方法があります。

  • 名前付き配列を含むファイルをインクルードしますが、元の名前を完全に忘れ ( $myArray)、私が付けた新しい名前のみを使用します ( $includedArray)?

  • または、ファイル全体を含めずに、配列から 1 つのキーを単純に読み取る方法はありますか?

4

4 に答える 4

3

次に、配列を別の変数にコピーして、元の配列の設定を解除しますか?

パス/to/myNewArray.php :

return call_user_func(function() {
  include "/path/to/myArray.php";
  return $myArray;
});

/*
if (isset($myArray)) {
  $tmpMyArray = $myArray; // storing the $myArray if defined
}

$includedArray = $myArray;
unset($myArray);
if (isset($tmpMyArray)) {
  $myArray = $tmpMyArray; // restoring the previous $myArray
}
*/

利用方法:

$whatEver = include("/path/to/myNewArray.php"); // no interference now
于 2012-05-08T19:01:18.077 に答える
2

共有値が必要であるが、含まれている共通のphp構成ファイルと共有されるグローバル変数を使用したくない場合は、それらの値をxmlまたはjsonファイルに保存するのはどうでしょうか。


Jsonを使用すると、ファイルから選択した変数に「配列」をロードできます。

http://www.php.net/manual/en/function.json-decode.php


または、出力バッファを使用することもできますが、それは現在のユースケースにはあまり当てはまりません。

    function ob_include_to_string($filename)
    {
        ob_start();                                         // Starts the 'output buffer'
        include($filename);                                 // Includes the file
        $return_variable = ob_get_contents();               // Sets an variable to keep the content of the echo'ed out content
        ob_end_clean();                                     // Ends and deletes the 'output buffer'; "cleans it up"
        return $return_variable;                            // Returns the variable with the content
    }

設定ファイルを次のように変更するのはどうですか?

<?php 
$myArray = array(
  'key1'=>'value1',
  'key2'=>'value2',
);

echo json_encode($myArray);
?>

そして、あなたは次のことができます:

$newArray = json_decode(ob_include_to_string('config.php'));
于 2012-05-08T19:09:23.327 に答える
1

方法1

活用するfunction scope

$myArray = arrayInclude("myArray.php");
var_dump($myArray);

function arrayInclude($file)
{
    include $file;
    return $myArray;    
}

出力

array
  'key1' => string 'foo1' (length=4)
  'key2' => string 'foo2' (length=4)

myArray.php

$myArray = array (

                'key1' => 'foo1',
                'key2' => 'foo2'
        );

方法2

function&の使用 namespace

a.php

include 'b.php';
include 'c.php';

$myArray = call_user_func ( 'b\myArray' );

var_dump ( $myArray );

$myArray = call_user_func ( 'c\myArray' );

var_dump ( $myArray );

出力

array
  'key1' => string 'foo1' (length=4)
  'key2' => string 'foo2' (length=4)
array
  'key1' => string 'bar1' (length=4)
  'key2' => string 'bar2' (length=4)

b.php

namespace b;

    function myArray() {
        return array (

                'key1' => 'foo1',
                'key2' => 'foo2'
        );

    }

c.php

namespace c;

function myArray() {
    return array (

            'key1' => 'bar1',
            'key2' => 'bar2' 
    );

}
于 2012-05-08T19:04:51.677 に答える
0

array.php

<?php
    class MyArray {
        public static $myArray = array('key1' => value1, 'key2' => value2);
    }
?>

other.php

<?php
    include('array.php');

    //Access the value as
    MyArray::$myArray['key1'];
?>
于 2012-05-08T19:34:54.990 に答える