熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Delphi編程 >> 正文

讓Delphi 2007 for PHP正確顯示中文

2022-06-13   來源: Delphi編程 

  在 Delphi for PHP 中中文顯示(尤其是按鈕中的文顯示)可以用如下的方法進行解決:

  使用頁面對象的setEncoding($value)方法來為頁面指定charset$value的格式為編碼說明|編碼如下所示為將頁面設置為GBK編碼:

  $Unit>setEncoding(Chinese China (zhcn)|GBK);

  setEncoding應該放置在loadResource(__FILE__)之後show()之前

<?php
    //Includes
    require_once(vcl/vclincphp);
    use_unit(formsincphp);
    use_unit(extctrlsincphp);
    use_unit(stdctrlsincphp);
    //Classdefinition
    classMainextendsPage
    {
       public$Button=null;
    }
    global$application;
    global$Main;
    //Createstheform
    $Main=newMain($application);
    //Readfromresourcefile
    $Main>loadResource(__FILE__);
    $Main>setEncoding(ChineseChina(zhcn)|GBK);
    //Showstheform
    $Main>show();
?>


From:http://tw.wingwit.com/Article/program/Delphi/201311/25035.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.