有人建议使用SplObjectStorage来跟踪一组独特的事物。很好,除了它不适用于字符串。错误说“SplObjectStorage :: attach()期望参数1是对象,在第59行的fback.php中给出字符串”
有什么想法吗?
答案 0 :(得分:8)
SplObjectStorage
就是它的名字所说的:用于存储对象的存储类。与其他一些编程语言相比,strings
不是PHP中的对象,它们是字符串;-)。因此,将字符串存储在SplObjectStorage
中是没有意义的 - 即使您将字符串包装在类stdClass
的对象中。
存储一组唯一字符串的最佳方法是使用数组(作为哈希表),将字符串作为键和值(由Ian Selby建议)。
$myStrings = array();
$myStrings['string1'] = 'string1';
$myStrings['string2'] = 'string2';
// ...
但是,您可以将此功能包装到自定义类中:
class UniqueStringStorage // perhaps implement Iterator
{
protected $_strings = array();
public function add($string)
{
if (!array_key_exists($string, $this->_strings)) {
$this->_strings[$string] = $string;
} else {
//.. handle error condition "adding same string twice", e.g. throw exception
}
return $this;
}
public function toArray()
{
return $this->_strings;
}
// ...
}
顺便说一下,你为PHP模拟SplObjectStorage
的行为< 5.3.0并更好地了解它的作用。
$ob1 = new stdClass();
$id1 = spl_object_hash($ob1);
$ob2 = new stdClass();
$id2 = spl_object_hash($ob2);
$objects = array(
$id1 => $ob1,
$id2 => $ob2
);
SplObjectStorage
为每个实例(如spl_object_hash()
)存储唯一的哈希值
能够识别对象实例。如上所述:字符串根本不是对象,因此它没有实例哈希。可以通过比较字符串值来检查字符串的唯一性 - 当两个字符串包含相同的字节集时,它们是相等的。
答案 1 :(得分:5)
这是对象存储。字符串是标量。因此,请使用SplString。
答案 2 :(得分:1)
将字符串包装在stdClass中?
$dummy_object = new stdClass();
$dummy_object->string = $whatever_string_needs_to_be_tracked;
$splobjectstorage->attach($dummy_object);
但是,即使字符串相同,以这种方式创建的每个对象仍然是唯一的。
如果您需要担心重复的字符串,也许您应该使用哈希(关联数组)来跟踪它们?
答案 3 :(得分:0)
$myStrings = array();
$myStrings[] = 'string1';
$myStrings[] = 'string2';
...
foreach ($myStrings as $string)
{
// do stuff with your string here...
}
如果你想确保数组中字符串的唯一性,你可以做几件事......首先是简单地使用array_unique()。那,或者您可以创建一个关联数组,其中字符串作为键以及值:
$myStrings = array();
$myStrings['string1'] = 'string1';
...
如果您希望面向对象,可以执行以下操作:
class StringStore
{
public static $strings = array();
// helper functions, etc. You could also make the above protected static and write public functions that add things to the array or whatever
}
然后,在您的代码中,您可以执行以下操作:
StringStore::$strings[] = 'string1';
...
以相同的方式迭代:
foreach (StringStore::$strings as $string)
{
// whatever
}
SplObjectStorage用于跟踪对象的唯一实例,除了不使用字符串之外,对于你想要完成的事情(在我看来)来说有点过分。
希望有所帮助!
答案 4 :(得分:0)
或者也许只是使用__toString()方法将你的字符串实例化为一个对象 - 这样你就可以拥有它们 - 对象和能力将它用作字符串(var_dump,echo)..