ใน PHP ฉันสามารถรวมไดเรกทอรีของสคริปต์ได้หรือไม่
เช่นแทนที่จะ:
include('classes/Class1.php');
include('classes/Class2.php');
มีบางอย่างเช่น:
include('classes/*');
ดูเหมือนจะไม่สามารถหาวิธีที่ดีในการรวมชุดย่อยประมาณ 10 คลาสสำหรับคลาสเฉพาะ
ใน PHP ฉันสามารถรวมไดเรกทอรีของสคริปต์ได้หรือไม่
เช่นแทนที่จะ:
include('classes/Class1.php');
include('classes/Class2.php');
มีบางอย่างเช่น:
include('classes/*');
ดูเหมือนจะไม่สามารถหาวิธีที่ดีในการรวมชุดย่อยประมาณ 10 คลาสสำหรับคลาสเฉพาะ
คำตอบ:
foreach (glob("classes/*.php") as $filename)
{
include $filename;
}
get_include_path()
ยังคงไม่สามารถกำหนดลำดับการโหลดได้โดยอัตโนมัติ (อาจโหลดคลาสพื้นฐานหลังจากขยายคลาสทำให้เกิดข้อผิดพลาด)
นี่คือวิธีที่ฉันรวมคลาสจำนวนมากจากหลาย ๆ โฟลเดอร์ใน 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;
}
}
}
ฉันรู้ว่านี่เป็นโพสต์ที่เก่ากว่า แต่ไม่รวมถึงชั้นเรียนของคุณ ... แทนที่จะใช้ __autoload
function __autoload($class_name) {
require_once('classes/'.$class_name.'.class.php');
}
$user = new User();
จากนั้นเมื่อใดก็ตามที่คุณเรียกคลาสใหม่ที่ยังไม่ได้รวม php จะทำการยิงอัตโนมัติ __autoload และรวมไว้ให้คุณ
หากคุณใช้ php 5 คุณอาจต้องการใช้autoloadแทน
นี่เป็นเพียงการแก้ไขโค้ดของ Karsten
function include_all_php($folder){
foreach (glob("{$folder}/*.php") as $filename)
{
include $filename;
}
}
include_all_php("my_classes");
วิธีการทำเช่นนี้ในปี 2560:
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 ที่นี่: คลาสการโหลดอัตโนมัติ
autoload
จะเข้ามาเฉพาะเมื่อมีคนพยายามคือสร้างวัตถุของคลาสที่ยังไม่ได้โหลด
คุณสามารถใช้set_include_path :
set_include_path('classes/');
classes/
เมื่อไม่ใช้include
/require
หากคุณต้องการรวมทั้งหมดในไดเรกทอรีและไดเรกทอรีย่อย:
$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;
}
อย่าลืมว่ามันจะใช้ลำดับตัวอักษรเพื่อรวมไฟล์ของคุณ
The entries are returned in the order in which they are stored by the filesystem.
- php.net/manual/en/function.readdir.php
หากคุณต้องการรวมคลาสต่างๆโดยไม่ต้องกำหนดแต่ละคลาสพร้อมกันคุณสามารถใช้:
$directories = array(
'system/',
'system/db/',
'system/common/'
);
foreach ($directories as $directory) {
foreach(glob($directory . "*.php") as $class) {
include_once $class;
}
}
วิธีนี้คุณสามารถกำหนดคลาสในไฟล์ php ที่มีคลาสได้และไม่ใช่รายการทั้งหมด $thisclass = new thisclass();
มันจัดการไฟล์ทั้งหมดได้ดีแค่ไหน? ฉันไม่แน่ใจว่าอาจลดความเร็วลงเล็กน้อยด้วย
หากไม่มีการขึ้นต่อกันระหว่างไฟล์ ... นี่คือฟังก์ชั่นวนซ้ำเพื่อรวมไฟล์ PHP __ ALL ALL ในส่วนย่อยทั้งหมด:
$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');
<?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");
}
ฉันขอแนะนำให้คุณใช้ฟังก์ชั่นreaddir ()จากนั้นวนซ้ำและรวมไฟล์ (ดูตัวอย่างที่ 1 ในหน้านั้น)
ห้ามเขียน function () เพื่อรวมไฟล์ไว้ในไดเรกทอรี คุณอาจสูญเสียขอบเขตตัวแปรและอาจต้องใช้ "global" เพียงแค่วนรอบไฟล์
นอกจากนี้คุณอาจพบปัญหาเมื่อไฟล์ที่รวมมีชื่อคลาสที่จะขยายไปยังคลาสอื่น ๆ ที่กำหนดไว้ในไฟล์อื่น - ซึ่งยังไม่รวม ดังนั้นระวัง