web-dev-qa-db-ja.com

ディレクトリからすべてのPHPファイルをinclude()する方法は?

非常に簡単なn00bの質問、PHPにスクリプトのディレクトリを含めることができます。

つまり、次の代わりに:

include('classes/Class1.php');
include('classes/Class2.php');

次のようなものがあります:

include('classes/*');

特定のクラスに約10個のサブクラスのコレクションを含める良い方法を見つけることができなかったようです。

217
occhiso
foreach (glob("classes/*.php") as $filename)
{
    include $filename;
}
410
Karsten

PHP 5のいくつかのフォルダから多くのクラスを含める方法を次に示します。これは、クラスがある場合にのみ機能します。

/*Directories that contain classes*/
$classesDir = array (
    ROOT_DIR.'classes/',
    ROOT_DIR.'firephp/',
    ROOT_DIR.'includes/'
);
function __autoload($class_name) {
    global $classesDir;
    foreach ($classesDir as $directory) {
        if (file_exists($directory . $class_name . '.php')) {
            require_once ($directory . $class_name . '.php');
            return;
        }
    }
}
49
Marius

これは古い投稿ですが、クラスを含めないでください...代わりに__autoloadを使用してください

function __autoload($class_name) {
    require_once('classes/'.$class_name.'.class.php');
}

$user = new User();

その後、まだインクルードされていない新しいクラスを呼び出すと、phpが__autoloadを自動的に起動してインクルードします

28
Banning

これはKarstenのコードの単なる修正です

function include_all_php($folder){
    foreach (glob("{$folder}/*.php") as $filename)
    {
        include $filename;
    }
}

include_all_php("my_classes");
19
foobar

Php 5を使用している場合は、代わりに autoload を使用できます。

18
SorinV

2017年にこれを行う方法:

spl_autoload_register( function ($class_name) {
    $CLASSES_DIR = __DIR__ . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR;  // or whatever your directory is
    $file = $CLASSES_DIR . $class_name . '.php';
    if( file_exists( $file ) ) include $file;  // only include if file exists, otherwise we might enter some conflicts with other pieces of code which are also using the spl_autoload_register function
} );

PHPのドキュメントで推奨: クラスの自動ロード

14
Sorin C

次を使用できますset_include_path

set_include_path('classes/');

http://php.net/manual/en/function.set-include-path.php

8
albanx

ディレクトリとそのサブディレクトリにすべてを含める場合:

$dir = "classes/";
$dh  = opendir($dir);
$dir_list = array($dir);
while (false !== ($filename = readdir($dh))) {
    if($filename!="."&&$filename!=".."&&is_dir($dir.$filename))
        array_Push($dir_list, $dir.$filename."/");
}
foreach ($dir_list as $dir) {
    foreach (glob($dir."*.php") as $filename)
        require_once $filename;
}

ファイルを含めるためにアルファベット順を使用することを忘れないでください。

1
<?php
//Loading all php files into of functions/ folder 

$folder =   "./functions/"; 
$files = glob($folder."*.php"); // return array files

 foreach($files as $phpFile){   
     require_once("$phpFile"); 
}
1
Mr. Genesis

ファイル間にNO依存関係がある場合...ここに、すべてのサブディレクトリ内のすべてのphpファイルをinclude_onceする再帰関数があります。

$paths = array();

function include_recursive( $path, $debug=false){
  foreach( glob( "$path/*") as $filename){        
    if( strpos( $filename, '.php') !== FALSE){ 
       # php files:
       include_once $filename;
       if( $debug) echo "<!-- included: $filename -->\n";
    } else { # dirs
       $paths[] = $filename; 
    }
  }
  # Time to process the dirs:
  for( $i=count($paths)-1; $i>0; $i--){
    $path = $paths[$i];
    unset( $paths[$i]);
    include_recursive( $path);
  }
}

include_recursive( "tree_to_include");
# or... to view debug in page source:
include_recursive( "tree_to_include", 'debug');
1
Sergio Abreu

各クラスを一度に定義せずにクラスの束を含めたい場合は、次を使用できます。

$directories = array(
            'system/',
            'system/db/',
            'system/common/'
);
foreach ($directories as $directory) {
    foreach(glob($directory . "*.php") as $class) {
        include_once $class;
    }
}

この方法では、$thisclass = new thisclass();のリスト全体ではなく、クラスを含むphpファイルでクラスを定義できます。

それはすべてのファイルをどれだけうまく処理しますか?これにより速度がわずかに低下する可能性があるかどうかはわかりません。

0
Scott Dawson

readdir() 関数を使用してから、ファイルをループしてインクルードすることをお勧めします(そのページの最初の例を参照)。

0
Stiropor