Stringable::__toString
(PHP 8)
Stringable::__toString — オブジェクトの文字列表現を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
オブジェクトの文字列表現を返します。
+add a note
User Contributed Notes 1 note
zikro32 at gmail dot com ¶
4 months ago
__toString() magic method is not intended to be called directly.
Instead, it defines what is returned when the object is cast to string, either explicitly casting with:
(string)$element
Or implicitly, when used in certain contexts which would cause a conversion to string.
If you really want to explicitly call a method to convert an object to string, then you can just create a public toString method and call that, avoid using the magic __toString directly if no casting is needed.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google