mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
19 lines
235 B
PHP
19 lines
235 B
PHP
--TEST--
|
|
IDN
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
|
|
/*
|
|
* Test IDN functions (procedural only)
|
|
*/
|
|
|
|
echo idn_to_ascii("t\xC3\xA4st.de")."\n";
|
|
echo urlencode(idn_to_utf8('xn--tst-qla.de'))."\n";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
xn--tst-qla.de
|
|
t%C3%A4st.de
|