python_apps/crwlers/unconv.php
2023-11-03 14:49:12 +09:00

15 lines
180 B
PHP

<?php
$term = $argv[1];
$unURLenco = urldecode($term);
echo $unURLenco."\n"; //utf8 디코딩시
//$term_euc = iconv("CP949","UTF-8",$unURLenco);
//echo $term_euc."\n";
?>