<?php
$array = [1, 3, 4];
$array->push(5);
$array->slice(1, 2)->find(3);
$a = 100;
$a->add(99)->mul(2)->sub(100);
$s = "hello";
$s->upper();