在php中打印芬兰语言文本

时间:2016-09-29 10:10:50

标签: php localization multilingual

我用html用芬兰语写的文字很好用。但是当我把所有的html放在php中时它就没用了。

这是我的代码

<?php
        $html='<!DOCTYPE html>
        <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
        <!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
        <!--[if !IE]><!--> <html lang="fi" xml:lang="fi" xmlns="http://www.w3.org/1999/xhtml"> <!--<![endif]-->

        <!-- BEGIN HEAD -->
        <head>
             <meta charset="UTF-8" />
            <title>Login Page</title>
            <meta content="width=device-width, initial-scale=1.0" name="viewport" />
            <meta content="" name="description" />
            <meta content="" name="author" />

        </head>
            <!-- END HEAD -->

            <!-- BEGIN BODY -->
        <body >'; 
    $html=$html."<h4 style='font-family: Calibri, sans-serif;'><span lang='fi'>pitää pääosassa</span><h4>";

    $html=$html."</body></html>";

    echo $html;
?>

1 个答案:

答案 0 :(得分:1)

我通过在utf8_encode()函数中添加所有文本来解决它

[[UIApplication sharedApplication] cancelLocalNotification:notification]