mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
Co-authored-by: Gina Peter Banyard <girgias@php.net> Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
14 lines
523 B
PHP
14 lines
523 B
PHP
--TEST--
|
|
UTF-8<->ISO Latin 1 encoding/decoding test
|
|
--FILE--
|
|
<?php
|
|
printf("%s -> %s\n", urlencode("æ"), urlencode(utf8_encode("æ")));
|
|
printf("%s <- %s\n", urlencode(utf8_decode(urldecode("%C3%A6"))), "%C3%A6");
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function utf8_encode() is deprecated since 8.2, visit the php.net documentation for various alternatives in %s on line %d
|
|
%E6 -> %C3%A6
|
|
|
|
Deprecated: Function utf8_decode() is deprecated since 8.2, visit the php.net documentation for various alternatives in %s on line %d
|
|
%E6 <- %C3%A6
|