Skip to content

InvalidPropertyAssignment

オブジェクトではない値にプロパティを割り当てようとした場合に発生します。

<?php
$a = "foo";
$a->bar = "bar";

ユーザーノート