| WWW-Favicon documentation | view source | Contained in the WWW-Favicon distribution. |
WWW::Favicon - perl module to detect favicon url
use WWW::Favicon qw/detect_favicon_url/;
my $favicon_url = detect_favicon_url('http://example.com/');
# or OO way
use WWW::Favicon;
my $favicon = WWW::Favicon->new;
my $favicon_url = $favicon->detect('http://example.com/');
This module provide simple interface to detect favicon url of specified url.
Create new WWW::Favicon object.
Detect favicon url of $url.
Same as $self->detect described above.
Daisuke Murase <typester@cpan.org>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| WWW-Favicon documentation | view source | Contained in the WWW-Favicon distribution. |