Branch | Unit Tests | Coverage | Dependency |
---|---|---|---|
IDNA Convert is a fork of phlyLabs pure PHP IDNA Converter (http://idnaconv.phlymail.de/) It converts internationalized domain names between UTF-8 and ASCII (punycode) notation. Orginal package is in directory lib/phlylabs.
You should used orginal package mso/idna-convert (https://github.com/phlylabs/idna-convert)
Add the package to your composer.json
file:
{
"require": {
"etechnika/idna-convert": "1.0.*"
}
}
Run composer.phar update
.
The following example describes basic usage.
<?php
require_once('vendor/autoload.php');
use Etechnika\IdnaConvert\IdnaConvert as IdnaConvert;
IdnaConvert::encodeString( 'żółw.pl' ); // prints 'xn--w-uga1v8h.pl'
IdnaConvert::decodeString( 'xn--w-uga1v8h.pl' ); // prints 'żółw.pl'
?>