(PECL spl_types >= 0.1.0)
SplString::__construct — 文字列型のオブジェクトを作成する
これは、文字列型の新しいオブジェクトを作成します。
値を返しません。
例1 SplString::__construct() の例
<?php
$string = new SplString("Testing");
try {
$string = array();
} catch (UnexpectedValueException $uve) {
echo $uve->getMessage() . PHP_EOL;
}
var_dump($string);
echo $string; // "Testing" を出力します
?>
上の例の出力は以下となります。
Value not a string object(SplString)#1 (1) { ["__default"]=> string(7) "Testing" } Testing