3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface CommerceLicenseBillingUsageGroupNamesInterface { public static function usageGroupNames(); } class TestLicense implements CommerceLicenseBillingUsageGroupNamesInterface { public static function usageGroupNames() { return array( 'test_group' => array( 'title' => 'Test Group', ), ); } } $l = new TestLicense(); echo print_r($l->usageGroupNames(), TRUE);

preferences:
57.17 ms | 402 KiB | 5 Q