Strings helpers
List of functions that works for PHP strings.
is_json
$json = '{}';
\OpenSoutheners\ExtendedPhp\Strings\is_json($json); // trueis_json_structure
$json = '1';
\OpenSoutheners\ExtendedPhp\Strings\is_json_structure($json); // falseget_email_domain
$email = '[email protected]';
\OpenSoutheners\ExtendedPhp\Strings\get_email_domain($email); // 'mydomain.com'Last updated