我很好奇如何到達包含空格或特殊字符的變量變量。 有沒有辦法做到? <?php
$first_day = "monday";
$$first_day = "first day of the week";
echo $monday." <br />";
$days = 'saturday sunday';
$$days = 'days of the weekend';
// how to
我創建的partials中,項目屬性名稱從數組傳遞以訪問這些屬性的值,但在定義$property->{$variable}時收到錯誤Undefined property of Namespace\Entity::$variable。我將如何去做這個工作? 下面是代碼的一個例子:如果訪問這樣$item->thumb{$thumb_size}屬性 foreach ($items as $item) {