我需要检查国际网址是否有效。例如:
http://täst.de/äxample-url/
我该怎么做?我可以使用任何Composer包。
答案 0 :(得分:-2)
您可以尝试使用PHP中的过滤器来测试网址。
示例:
$('.navbar').find('a').each(function()
{
if (window.location.href.indexOf($(this).attr('href')) > -1)
{
$(this).parent().addClass('active');
}
});
http://www.w3schools.com/php/filter_validate_url.asp http://php.net/manual/en/filter.filters.validate.php