标签: php
$domain = strtok($domain_name, '.'); if (strlen($domain) <= "5") { $user_name = substr($domain . $filler); } else { $user_name = substr($domain, 0, 5); }
在这种情况下,我的逻辑无法正常工作。