<?php
require_once('idna_convert.class.php');
$IDN = new idna_convert();
$serverName = $_SERVER["SERVER_NAME"];
$IDNserverName = rawurlencode($IDN [COLOR="Red"]->[/COLOR] decode($serverName));
echo $IDNserverName;
?>
I have the code above.
I like to know about the meaning of “->”
If you give me a simple code which contains “->”,
It will be very helpful.