|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
说说这一个月左右的学习情况和心得吧!我个人认为,既然决定了去做一件事,那就要以认真的态度去对待!既然决定来学习了,那不管当初是抱着怎样的心态来到这个培训班的,都要让自己认真的投入到学习中。PHP的主动加载autoload机制很主要,这里做2个小实习原创文章,转载请说明:http://www.ckuyun.com/phpgcs文件布局以下,2种体例完成主动加载1,自界说函数2,spl_autoload_register()liuyuan@ebuinfo:/var/www/phpgcs/php_autoload$ll./*-rw-rw-r--1liuyuanliuyuan800Feb1911:39./func_autoload.php-rw-rw-r--1liuyuanliuyuan906Feb1911:28./spl_autoload.php./include:total16drwxrwxr-x2liuyuanliuyuan4096Feb1911:42./drwxrwxr-x3liuyuanliuyuan4096Feb1911:43../-rw-rw-r--1liuyuanliuyuan142Feb1911:42aClass.php-rw-rw-r--1liuyuanliuyuan143Feb1911:42bClass.php 起首看自界说函数体例:<?phpdefine(EOL,(PHP_SAPI==cli)?PHP_EOL:</br>);print_r(get_included_files());echoEOL;printget_include_path();echoEOL;//set_include_path(get_include_path().PATH_SEPARATOR./var/www/ly_php/php_spl/include/);//set_include_path(dirname(__FILE__)./include);//set_include_path(dirname(__FILE__)./include/);function__autoload($className){$filename=./include/.$className..php;//$filename=./include/.$className..php;//$filename=/var/www/ly_php/php_spl/include/.$className..php;if(file_exists($filename)){include_once$filename;}else{exit(nofile);}}$a=newaClass();$b=newbClass();print_r(get_included_files());?> 运转了局以下:+ViewCode 第二种体例:<?phpclassmyLoader{publicstaticfunctionautoload($className){$filename=./include/.$className..php;if(file_exists($filename)){include_once$filename;}else{exit(nofile);}}}define(EOL,(PHP_SAPI==cli)?PHP_EOL:<br/>);spl_autoload_register(array(myLoader,autoload));/***__autoload办法在spl_autoload_register后会生效,由于autoload_func函数指针已指向spl_autoload办法*能够经由过程上面的办法来把_autoload办法到场autoload_functionslist*///spl_autoload_register(__autoload);error_reporting(E_ALL^E_NOTICE^E_WARNING^E_ERROR);error_reporting(E_NOTICEE_WARNING);$a=newaClass();print_r(get_included_files());echoEOL;$b=newbClass();echoEOL;?> phpmanual(PHP手册)肯定是要从网上下载一个的,它很权威,也很全面,我自己认为它是一本很好的参考书,但是不适合新手当教材使用。 |
|