(首先,英语不是我的母语,所以请原谅词汇或语法上的任何错误... 其次,我不是专业程序员,我通过阅读在线教程学习了PHP)
我写了一个php函数,用html代码替换unicode字符的子字符串(以\ uXXXX的形式)。 这是功能:
function unicode_to_html($var){
if(isset($var) && !empty($var) )
{
$pos = strpos($var, '\u');
$hexa_code = substr($var, $pos+2, 4) ;
$unicode_string = '\u' . $hexa_code ;
$deci_code = hexdec($hexa_code) ;
$html_string = '&#' . $deci_code . ';' ;
$var = str_replace($unicode_string, $html_string, $var) ;
if (strpos($var, '\u') !== false) {
unicode_to_html($var);
} else {
$output = $var ;
echo 'result of the function unicode_to_html : ' . $output . '<br />' ;
try {
return $output ;
}
catch (Exception $e) {
echo 'Exception : ', $e->getMessage(), "\n";
}
}
}
else
{
return $var ;
}
}
我将此函数称为如下:
$var = 'Velibor \u010Coli\u0107';
echo 'input : ' . $var . '<br />' ;
$var2 = unicode_to_html($var) ;
echo 'output : ' . $var2 . '<br />' ;
但是,虽然函数中的“ echo”确实显示了所需的结果,但该函数似乎返回了一个空(或null?)字符串
input : Velibor \u010Coli\u0107
result of the function unicode_to_html : Velibor Čolić
output :
,我不明白为什么。对于专业的程序员来说,这可能是显而易见的,但是我不是...
谢谢您的帮助。
答案 0 :(得分:0)
现在您不从函数返回任何内容,了解有关递归函数的更多信息,只需在函数中添加return
:
if (strpos($var, '\u') !== false) {
return unicode_to_html($var);
}