<?php
class Node {
// constructor promotion syntax
function __construct(
public $data,
public ?Node $next = null,
) {}
}
$head = new Node("apple");
$head->next = new Node("banana");
$head->next->next = new Node("orange");
print_r($head);
To embed this project on your website, copy the following code and paste it into your website's HTML: