我试图将我的 PHP __autoload 函数定义为尽可能可靠和灵活。
这是我的应用程序结构的分解:
/dev (root)
/my_app
/php
/classes
- Class1.php
- Class2.php
- Class3.php
/scripts
myscript.php (the file I have to include the classes in)
这很简单。我的问题是:我如何编写我的 __autoload 函数,以便我可以包含我想要的任何类,而不管调用文件在目录结构中的嵌套深度如何。我知道它与 __FILE__ 、 realpath 和 dirname 函数有关,但我不确定适当的组合方式他们实现我所追求的灵 active 。
这是我做的一个快速测试:
<?php
echo realpath(dirname(__FILE__)) . "/php/classes/Class1.php";
?>
结果:
/home/mydirectory/dev.mysite.com/my_app/php/scripts/php/classes/Class1.php
如您所见,结果与类所在的位置不匹配。但是,如果我将 myscript.php 文件移动到/my_app 文件夹中,它会正确打印。
关于使它更灵活的建议?
最佳答案
我建议查看 spl_autoload .只需将正确的目录添加到您的 include_path
这样的事情可能会帮助您入门:
ini_set($your_class_dir_here .PATH_SEPERATOR. ini_get('include_path'));
您必须使用 spl_autoload_register 提供您自己的自动加载器或将所有文件名小写。
这是我自己的一个自动加载器,它使用 php 命名空间来克服一些目录问题。
<?php
namespace Red
{
// since we don't have the Object yet as we load this file, this is the only place where this needs to be done.
require_once 'Object.php';
/**
* Loader implements a rudimentary autoloader stack.
*/
class Loader extends Object
{
/**
* @var Loader
*/
static protected $instance = null;
/**
* @var string
*/
protected $basePath;
/**
* @return Loader
*/
static public function instance()
{
if (self::$instance == null)
{
self::$instance = new self();
}
return self::$instance;
}
/**
* Initialize the autoloader. Future expansions to the
* autoloader stack should be registered in here.
*/
static public function Init()
{
spl_autoload_register(array(self::instance(), 'autoLoadInNamespace'));
}
/**
* PHP calls this method when a class is used that has not been
* defined yet.
*
* I'm returning a boolean for success which isn't required (php ignores it)
* but makes life easier when the stack grows.
*
* @param string $fullyQualifiedClassName
* @return boolean
*/
public function autoLoadInNamespace($fullyQualifiedClassName)
{
$pathParts = preg_split('/\\\\/', $fullyQualifiedClassName, -1, PREG_SPLIT_NO_EMPTY);
array_unshift($pathParts, $this->basePath);
$pathToFile = implode(DIRECTORY_SEPARATOR, $pathParts) . '.php';
if (file_exists($pathToFile))
{
require_once $pathToFile;
return true;
}
return false;
}
/**
* Constructor is protected because we don't want multiple instances
* But we do want an instance to talk to later on.
*/
protected function __construct()
{
$this->basePath = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . '..');
}
}
}
#EOF;
它是 \Red 命名空间中名为 Loader 的类的一部分,并从一个简单的 Bootstrap 文件中初始化:
<?php
// This is where the magic is prepared.
require_once implode(DIRECTORY_SEPARATOR, array(dirname(__FILE__), 'Red', 'Loader.php'));
// Initialize the autoloader, no more require_once for every class
// and everything is OOP from here on in.
Red\Loader::Init();
#EOF
关于php - 为 PHP 编写 Bulletproof __autoload 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3273203/
我想用ruby编写一个小的命令行实用程序并将其作为gem分发。我知道安装后,Guard、Sass和Thor等某些gem可以从命令行自行运行。为了让gem像二进制文件一样可用,我需要在我的gemspec中指定什么。 最佳答案 Gem::Specification.newdo|s|...s.executable='name_of_executable'...endhttp://docs.rubygems.org/read/chapter/20 关于ruby-在Ruby中编写命令行实用程序
我想在一个没有Sass引擎的类中使用Sass颜色函数。我已经在项目中使用了sassgem,所以我认为搭载会像以下一样简单:classRectangleincludeSass::Script::FunctionsdefcolorSass::Script::Color.new([0x82,0x39,0x06])enddefrender#hamlengineexecutedwithcontextofself#sothatwithintemlateicouldcall#%stop{offset:'0%',stop:{color:lighten(color)}}endend更新:参见上面的#re
我正在尝试用ruby中的gsub函数替换字符串中的某些单词,但有时效果很好,在某些情况下会出现此错误?这种格式有什么问题吗NoMethodError(undefinedmethod`gsub!'fornil:NilClass):模型.rbclassTest"replacethisID1",WAY=>"replacethisID2andID3",DELTA=>"replacethisID4"}end另一个模型.rbclassCheck 最佳答案 啊,我找到了!gsub!是一个非常奇怪的方法。首先,它替换了字符串,所以它实际上修改了
我有一些代码在几个不同的位置之一运行:作为具有调试输出的命令行工具,作为不接受任何输出的更大程序的一部分,以及在Rails环境中。有时我需要根据代码的位置对代码进行细微的更改,我意识到以下样式似乎可行:print"Testingnestedfunctionsdefined\n"CLI=trueifCLIdeftest_printprint"CommandLineVersion\n"endelsedeftest_printprint"ReleaseVersion\n"endendtest_print()这导致:TestingnestedfunctionsdefinedCommandLin
我想在Ruby中创建一个用于开发目的的极其简单的Web服务器(不,不想使用现成的解决方案)。代码如下:#!/usr/bin/rubyrequire'socket'server=TCPServer.new('127.0.0.1',8080)whileconnection=server.acceptheaders=[]length=0whileline=connection.getsheaders想法是从命令行运行这个脚本,提供另一个脚本,它将在其标准输入上获取请求,并在其标准输出上返回完整的响应。到目前为止一切顺利,但事实证明这真的很脆弱,因为它在第二个请求上中断并出现错误:/usr/b
如何在Ruby中按名称传递函数?(我使用Ruby才几个小时,所以我还在想办法。)nums=[1,2,3,4]#Thisworks,butismoreverbosethanI'dlikenums.eachdo|i|putsiend#InJS,Icouldjustdosomethinglike:#nums.forEach(console.log)#InF#,itwouldbesomethinglike:#List.iternums(printf"%A")#InRuby,IwishIcoulddosomethinglike:nums.eachputs在Ruby中能不能做到类似的简洁?我可以只
说在前面这部分我本来是合为一篇来写的,因为目的是一样的,都是通过独立按键来控制LED闪灭本质上是起到开关的作用,即调用函数和中断函数。但是写一篇太累了,我还是决定分为两篇写,这篇是调用函数篇。在本篇中你主要看到这些东西!!!1.调用函数的方法(主要讲语法和格式)2.独立按键如何控制LED亮灭3.程序中的一些细节(软件消抖等)1.调用函数的方法思路还是比较清晰地,就是通过按下按键来控制LED闪灭,即每按下一次,LED取反一次。重要的是,把按键与LED联系在一起。我打算用K1来作为开关,看了一下开发板原理图,K1连接的是单片机的P31口,当按下K1时,P31是与GND相连的,也就是说,当我按下去时
我需要一个通过输入字符串进行计算的方法,像这样function="(a/b)*100"a=25b=50function.something>>50有什么方法吗? 最佳答案 您可以使用instance_eval:function="(a/b)*100"a=25.0b=50instance_evalfunction#=>50.0请注意,使用eval本质上是不安全的,尤其是当您使用外部输入时,因为它可能包含注入(inject)的恶意代码。另请注意,a设置为25.0而不是25,因为如果它是整数a/b将导致0(整数)。
我使用rails3.1+rspec和factorygirl。我对必填字段(validates_presence_of)的验证工作正常。我如何让测试将该事实用作“成功”而不是“失败”规范是:describe"Addanindustrywithnoname"docontext"Unabletocreatearecordwhenthenameisblank"dosubjectdoind=Factory.create(:industry_name_blank)endit{shouldbe_invalid}endend但是我失败了:Failures:1)Addanindustrywithnona
我需要从json记录中获取一些值并像下面这样提取curr_json_doc['title']['genre'].map{|s|s['name']}.join(',')但对于某些记录,curr_json_doc['title']['genre']可以为空。所以我想对map和join()使用try函数。我试过如下curr_json_doc['title']['genre'].try(:map,{|s|s['name']}).try(:join,(','))但是没用。 最佳答案 你没有正确传递block。block被传递给参数括号外的方法