2013/03/24

Instead of cumbersome inefficient use of PHP5's __autoload the external file containing the way

Generally written PHP code comrades, may file contains commands include, include_once, require, require_once familiar. Although these commands has played an important role for us to re-use the same code, but as the file be included, as well as the interaction between the include file contains the entire PHP application contains relations intricate. And there is a very inefficient, we write a PHP page may have to go hand-written code contains external public documents to be used eleven, and once the project becomes huge, modify the include file references will become a headache, because we must first know where references an external file, we can modify. Fortunately, with the release of PHP5 to a new function __ autoload entrance parameter is the name of the class is not defined. If we declare this function in your own code, it will be called automatically when you attempt to use the class has not yet been defined. By calling this function the scripting engine in PHP error class load required given a last chance before the failure. Here we should be able to think of, we can take advantage of this new feature, coupled with the use of object-oriented programming, we need to refer to external public code are encapsulated into a class inside the storage to the same as the class name file to the automatic loading function is triggered, we can directly contain PHP file with the name of the class, you can achieve the dynamic loading of external files. So we write code, you do not need to advance include external files, but also to achieve the object-oriented programming model, a page to the introduction of new classes only need to directly instantiate the class can, PHP accordance with __autoload the definition automatically go call the external file. Modifications and extensions is easy, as long as we have the class definition and maintenance on it. And even called among multiple classes and instances, without first contains the introduction, as long as the main code __autoload function declaration and the class definition file storage is handled in strict accordance with the rules, then calling each other between classes. and instantiation will auto-complete, which we will be able to rid itself of the original kind of cumbersome and inefficient external file contains way. Now I give you a simple piece of sample code, as long as the definition of a good external class file naming and storage rules, can facilitate the use of this fully automated external file contains. say ();  ?>      / / Inc / demo.php class definition example  

没有评论:

发表评论