Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
201 views
in Technique[技术] by (71.8m points)

strval函数的参数是MongoId对象,为什么可以?

关于strval的介绍如下图:

clipboard.png

根据描述:strval是不能将类对象字符串化,为什么可以对MongoId使用strval函数呢?

求帮助。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

因为MongoId有实现__toString的魔术方法

http://www.php.net/manual/en/...

__toString的例子:

<?php
Class Test {
    
    public function __toString() {
        return 'TestClass';
    }

}

$cls = new Test();
var_dump(strval($cls));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...