in reply to Re: "Correct" program style questions
in thread "Correct" program style questions
joe++ wrote: I know, [not importing anything] isn't going to work with HTML::Entities....
Actually, it can work with HTML::Entities. Merely specify an empty import list and fully qualify the function name.
use HTML::Entities (); HTML::Entities::encode_entities( $name );
Alternatively, you could simply require HTML::Entities and not call the import method.
Cheers,
Ovid
Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.
|
|---|