एकल फ़ंक्शंस.php या कई छोटी फ़ाइलों में विभाजित?


14

मैं विषय विकल्पों के साथ एक सरल ढांचा बना रहा हूं। मैंने कोड के विखंडू को भीतर functions.phpऔर एक विशिष्ट फ़ोल्डर संरचना में रखा है।

अब मेरी मुख्य functions.phpफ़ाइल में, मेरे पास केवल require_onceइन फ़ाइलों के लिए कॉल हैं।

लेकिन तर्क के लिए - मान लीजिए कि मैं शामिल करने के लिए 20 फ़ाइलों के साथ समाप्त करूंगा।

प्रशन:

  1. क्या यह WP प्रदर्शन पर एक दृश्य तरीके से प्रभाव डालता है?
  2. क्या यह बेहतर है कि इसे 1 फ़ाइल में रखा जाए (functions.php)
  3. इस के बारे में जाने के लिए सबसे अच्छा तरीका क्या है ?

धन्यवाद।

जवाबों:


12

1. क्या इसका WP प्रदर्शन पर एक दृश्य तरीके से प्रभाव पड़ता है?

यदि यह कुछ छोटी फ़ाइलों के लिए एक वास्तविक प्रभाव होगा, तो इसका एक प्रभाव होगा जो WP: PHP और सर्वर के प्रदर्शन से कम प्रभाव डालता है। क्या इसका वास्तव में कोई प्रभाव है? ज़रुरी नहीं। लेकिन आप अभी भी प्रदर्शन परीक्षण खुद करना शुरू कर सकते हैं।

2. क्या यह बेहतर है कि इसे 1 फ़ाइल में रखा जाए (functions.php)

अब सवाल "बेहतर क्या है"? समग्र फ़ाइल (ओं) से लोडिंग समय? फ़ाइल संगठन के दृष्टिकोण से? वैसे भी, इससे कोई फर्क नहीं पड़ता। इसे एक तरह से करें ताकि आप ढीले अवलोकन न करें और परिणाम को इस तरह से बनाए रख सकें जो आपके लिए सुखद हो।

3. इस बारे में जाने का सबसे अच्छा तरीका क्या है?

क्या मैं सामान्य रूप से करते बस में कहीं hooking है ( plugins_loaded, after_setup_theme, आदि - पर निर्भर करता है कि तुम क्या जरूरत) और फिर बस उन सब की आवश्यकता होती है:

foreach ( glob( plugin_dir_path( __FILE__ ) ) as $file )
    require_once $file;

वैसे भी, आप इसे थोड़ा अधिक जटिल और लचीला भी बना सकते हैं। उस उदाहरण पर एक नज़र डालें:

<?php

namespace WCM;

defined( 'ABSPATH' ) OR exit;

class FilesLoader implements \IteratorAggregate
{
    private $path = '';

    private $files = array();

    public function __construct( $path )
    {
        $this->setPath( $path );
        $this->setFiles();
    }

    public function setPath( $path )
    {
        if ( empty( $this->path ) )
            $this->path = \plugin_dir_path( __FILE__ ).$path;
    }

    public function setFiles()
    {
        return $this->files = glob( "{$this->getPath()}/*.php" );
    }

    public function getPath()
    {
        return $this->path;
    }

    public function getFiles()
    {
        return $this->files;
    }

    public function getIterator()
    {
        $iterator = new \ArrayIterator( $this->getFiles() );
        return $iterator;
    }

    public function loadFile( $file )
    {
        include_once $file;
    }
}

यह एक वर्ग है जो मूल रूप से एक ही करता है (PHP 5.3+ की आवश्यकता है)। लाभ यह है कि यह थोड़ा अधिक महीन होता है, इसलिए आप आसानी से केवल उन फ़ाइलों को लोड कर सकते हैं जिन्हें आपको एक विशिष्ट कार्य करने की आवश्यकता है:

$fileLoader = new WCM\FilesLoader( 'assets/php' );

foreach ( $fileLoader as $file )
    $fileLoader->loadFile( $file );

अपडेट करें

जैसा कि हम एक नया, PHP v5.2 दुनिया में रहते हैं, हम इसका उपयोग कर सकते हैं \FilterIterator। सबसे छोटे संस्करण का उदाहरण:

$files = new \FilesystemIterator( __DIR__.'/src', \FilesystemIterator::SKIP_DOTS );
foreach ( $files as $file )
{
    /** @noinspection PhpIncludeInspection */
    ! $files->isDir() and include $files->getRealPath();
}

यदि आपको PHP v5.2 के साथ रहना है, तो आप अभी भी \DirectoryIteratorएक ही कोड के साथ जा सकते हैं ।


ठंडा। स्पष्टीकरण के लिए धन्यवाद :) एक विशिष्ट फ़ोल्डर में फ़ाइलों के लिए जाँच करना शायद मैं जो कर रहा हूं उससे मदद नहीं मिलेगी, हालांकि यह एक अच्छा विचार है। मैं एक ढांचा बनाने की कोशिश कर रहा हूं जो कि मॉड्यूलर है। इसलिए सभी "मॉड्यूल" अलग-अलग फाइलों में होंगे, जिन्हें फ़ंक्शन में अलग-अलग प्रविष्टियों के रूप में सूचीबद्ध किया जाएगा (आवश्यकताएं)। इस तरह अगर कोई मॉड्यूल में से एक को शामिल नहीं करना चाहता है (उदाहरण के लिए: थीम-कस्टमाइज़र) - तो बस यह टिप्पणी कर सकते हैं कि आदि। यह वैसे भी योजना है :) फिर से धन्यवाद।
मेगामैन

@MegaMan आप कॉल करने से पहले loadFile()या साथ ही आउटपुट को फ़िल्टर कर सकते हैं require_once। तो बस विषय समर्थन की तरह कुछ प्रदान करते हैं जहां उपयोगकर्ता खुद का उपयोग add_theme_support()/remove_*()केवल अपने इच्छित मॉड्यूल लेने के लिए कर सकता है। तो बस $loadFile()या के लिए परिणाम का उपयोग करें glob()। Btw, अगर यह आपका समाधान था, तो कृपया इसे इस तरह चिह्नित करें। धन्यवाद।
kaiser

0

मैंने अपनी आवश्यकताओं के लिए थोड़ा सा जवाब दिया @kaiser - सोचा कि मैं इसे साझा करता हूं। मुझे और विकल्प चाहिए थे, जिन्हें कोड के अंदर और नीचे दिए गए उदाहरण पर समझाया गया है।

कोड:

<?php

defined( 'ABSPATH' ) OR exit;

/**
 * Functions_File_Loader
 * 
 * Makes it possible to clutter the functions.php into single files.
 * 
 * @author kaiser
 * @author ialocin
 * @link http://wordpress.stackexchange.com/q/111970/22534
 *
 */

class Functions_File_Loader implements IteratorAggregate {

    /**
     * @var array
     */
    private $parameter = array();

    /**
     * @var string
     */
    private $path;

    /**
     * @var string
     */
    private $pattern;

    /**
     * @var integer
     */
    private $flags;

    /**
     * @var array
     */
    private $files = array();

    /**
     * __construct
     *
     * @access public 
     * @param array $parameter
     */
    public function __construct( $parameter ) {
        $this->set_parameter( $parameter );
        $this->set_path( $this->parameter[ 'path' ] );
        $this->set_pattern( $this->parameter[ 'pattern' ] );
        $this->set_flags( $this->parameter[ 'flags' ] );
        $this->set_files();
    }

    /**
     * set_parameter
     *
     * @access public 
     * @param array $parameter
     */
    public function set_parameter( $parameter ) {
        if ( empty( $parameter ) )
            $this->parameter = array('','','');
        else
            $this->parameter = $parameter;
    }

    /**
     * get_parameter
     *
     * @access public 
     * @return array
     */
    public function get_parameter() {
        return $this->parameter;
    }

    /**
     * set_path
     *
     * defaults to get_stylesheet_directory()
     * 
     * @access public 
     * @param string $path
     */
    public function set_path( $path ) {
        if ( empty( $path ) )
            $this->path = get_stylesheet_directory().'/';
        else
            $this->path = get_stylesheet_directory().'/'.$path.'/';
    }

    /**
     * get_path
     *
     * @access public 
     * @return string
     */
    public function get_path() {
        return $this->path;
    }

    /**
     * set_pattern
     *
     * defaults to path plus asterisk »*«
     * 
     * @access public 
     * @param string $pattern
     */
    public function set_pattern( $pattern ) {
        if ( empty( $pattern ) )
            $this->pattern = $this->get_path() . '*';
        else
            $this->pattern = $this->get_path() . $pattern;
    }

    /**
     * get_pattern
     *
     * @access public 
     * @return string
     */
    public function get_pattern() {
        return $this->pattern;
    }

    /**
     * set_flags
     *
     * @access public 
     * @param integer $flags
     */
    public function set_flags( $flags ) {
        if ( empty( $flags ) )
            $this->flags = '0';
        else
            $this->flags = $flags;
    }

    /**
     * get_flags
     *
     * @access public 
     * @return integer
     */
    public function get_flags() {
        return $this->flags;
    }


    /**
     * set_files
     *
     * @access public 
     */
    public function set_files() {
        $pattern = $this->get_pattern();
        $flags = $this->get_flags();
        $files = glob( $pattern, $flags );
        $this->files = $files;
    }


    /**
     * get_files
     *
     * @access public 
     * @return array
     */
    public function get_files() {
        return $this->files;
    }

    /**
     * getIterator
     * 
     * This function name has to be kept
     * 
     * @access public 
     * @return void
     */
    public function getIterator() {
        $iterator = new ArrayIterator( $this->get_files() );
        return $iterator;
    }

    /**
     * load_file
     *
     * @access public 
     * @param string $file
     */
    public function load_file( $file ) {
        include_once $file;
    }
}


उपयोग उदाहरण:

$parameter = array(
        // define path relative to get_stylesheet_directory()
        // optional, defaults to get_stylesheet_directory()
        'path' => 'includes/plugins',
        // optional, defaults to asterisk »*«
        // matches all files ending with ».php« 
        // and not beginning with »_«, good for quickly deactivating 
        // directories searched are »path« and »subfolders«
        // Additional examples:
        // '{*/,}{[!_],}func-*.php' same as above but for files with a prefix
        // '[!_]*.php' php files in defined »path«, not beginning with »_« 
        'pattern' => '{*/,}[!_]*.php',
        // optional, defaults to 0
        // needed if for example brackets are used
        // more information: http://www.php.net/manual/en/function.glob.php
        'flags' => GLOB_BRACE
    );
// create object
$functionsfileloader = new Functions_File_Loader( $parameter );
// load the files
foreach ( $functionsfileloader as $file ) {
    $functionsfileloader->load_file( $file );
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.