Net_IDNA2
[ class tree: Net_IDNA2 ] [ index: Net_IDNA2 ] [ all elements ]

Source for file example_web.php

Documentation is available at example_web.php

  1. <?php
  2.  
  3. header'Content-Type: text/html; charset=UTF-8' );
  4.  
  5. require 'Net/IDNA.php';
  6.  
  7.  
  8. $idn = Net_IDNA::getInstance();
  9.  
  10. if (isset($_REQUEST['encode'])) {
  11.     $decoded = isset($_REQUEST['decoded'])$_REQUEST['decoded''';
  12.     
  13.     try {
  14.         $encoded $idn->encode($decoded);
  15.     }
  16.     catch (Exception $e{
  17.         /* just swallow */
  18.     }
  19. }
  20.  
  21. if (isset($_REQUEST['decode'])) {
  22.     $encoded = isset($_REQUEST['encoded'])$_REQUEST['encoded''';
  23.     
  24.     try {
  25.         $decoded $idn->decode($encoded);
  26.     }
  27.     catch (Exception $e{
  28.         /* just swallow */
  29.     }
  30. }
  31.  
  32. if (!isset($encoded)) {
  33.     $encoded '';
  34. }
  35.  
  36. if (!isset($decoded)) {
  37.     $decoded '';
  38. }
  39.  
  40. ?>
  41. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  42.  
  43. <html>
  44. <head>
  45.  
  46. <title>Punycode Converter</title>
  47.  
  48. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  49.  
  50. <style type="text/css">
  51.  
  52. body
  53. {
  54.     font-family:        Helvetica, Arial, sans-serif;
  55.     font-size:          10pt;
  56.     background:         rgb( 255, 255, 255 );
  57. }
  58.  
  59. #centered
  60. {
  61.     text-align:         center;
  62.     vertical-align:     middle;
  63. }
  64.  
  65. #round
  66. {
  67.     background-color:   rgb( 240, 240, 240 );
  68.     border:             1px solid black;
  69.     text-align:         center;
  70.     vertical-align:     middle;
  71.     padding:            4px;
  72. }
  73.  
  74. #subhead
  75. {
  76.     font-size:          8pt;
  77. }
  78.  
  79. </style>
  80.  
  81. </head>
  82.  
  83. <body>
  84.  
  85. <table width="780" border="0" cellpadding="0" cellspacing="0">
  86. <tr>
  87.     <td id="centered">
  88.     <div id="round">
  89.     <strong>IDNA Converter</strong><br />
  90.  
  91.     <span id="subhead">
  92.     See <a href="http://faqs.org/rfcs/rfc3490.html" title="IDNA" target="_blank">RFC3490</a>,
  93.     <a href="http://faqs.org/rfcs/rfc3491.html" title="Nameprep, a Stringprep profile" target="_blank">RFC3491</a>,
  94.     <a href="http://faqs.org/rfcs/rfc3492.html" title="Punycode" target="_blank">RFC3492</a> and
  95.     <a href="http://faqs.org/rfcs/rfc3454.html" title="Stringprep" target="_blank">RFC3454</a><br />
  96.     </span>
  97.    
  98.     <br />
  99.  
  100.     This converter allows you to transfer domain names between the encoded (Punycode) notation and the
  101.     decoded (UTF-8) notation.<br />
  102.    
  103.     Just enter the domain name in the respective field and click on the button right beside it to have
  104.     it converted. Please be aware, that you might even enter complete domain names (like j&#xFC;rgen-m&#xFC;ller.de),
  105.     but without the protocol (<strong>DO NOT</strong> enter http://m&#xFC;ller.de) or an email address.<br />
  106.    
  107.     Since the underlying library is still buggy, we cannot guarantee its usefulness and correctness. You should
  108.     always doublecheck the results given here by converting them back to the original form.<br />
  109.    
  110.     Any productive use is discouraged and prone to fail.<br />
  111.    
  112.     <br />
  113.    
  114.     Make sure, that your browser is capable of the <strong>UTF-8</strong> character encoding.<br />
  115.     
  116.     <br />
  117.     
  118.     <table border="0" cellpadding="2" cellspacing="2" align="center">
  119.     <tr>
  120.         <td class="thead" align="left">Original</td>
  121.         <td class="thead" align="right">Punycode</td>
  122.     </tr>
  123.     
  124.     <tr>
  125.         <td>
  126.         <form action="<?php echo $_SERVER['PHP_SELF']?>" method="GET">
  127.         <input type="text" name="decoded" value="<?php echo $decoded?>" size="24" maxlength="255" />
  128.         <input type="submit" name="encode" value="Encode &gt;&gt;" />
  129.         </form>
  130.         </td>
  131.         
  132.         <td>
  133.         <form action="<?php echo $_SERVER['PHP_SELF']?>" method="GET">
  134.         <input type="submit" name="decode" value="&lt;&lt; Decode" />
  135.         <input type="text" name="encoded" value="<?php echo $encoded?>" size="24" maxlength="255" />
  136.         </form>
  137.         </td>
  138.     </tr>
  139.     </table>
  140.     </div>
  141.     </td>
  142. </tr>
  143. </table>
  144.  
  145. </body>
  146. </html>

Documentation generated on Mon, 11 Mar 2019 15:41:58 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.