<?php $consts = get_defined_constants(); $consts = array_keys($consts); usort($consts, function($a, $b) { $aLen = strlen($a); $bLen = strlen($b); if ($aLen === $bLen) { return 0; } return $aLen < $bLen ? 1 : -1; }); foreach($consts as $const) { echo strlen($const) . ": " . $const . "\n"; }
You have javascript disabled. You will not be able to edit any code.
This script was stopped while abusing our resources