duandoucou7200 2016-03-23 18:41
浏览 44
已采纳

将语言数组设置为常量

My site is translated using language files, such as "en/home.php" which inside has content such as...

<?php
$lang = array(
'welcome' => 'Welcome to DugoutSoccer.com',
'login' => 'Login',
'pw' => 'Password'
);
?> 

In several functions I make $lang global and wanted to save the need for this (if it's worth it). The files can be as large as 25Kb, would it be acceptable to define this as a constant?

Thanks

  • 写回答

1条回答 默认 最新

  • duangu9997 2016-03-23 18:51
    关注

    Basically just normal defintion of Constant and unseralizing the constant...

    # define constant, serialize array
    define ("ConstantVar", serialize (array ('welcome' => 'Welcome to DugoutSoccer.com',
    'login' => 'Login',
    'pw' => 'Password')));
    
    # use it
    $my_constant= unserialize (ConstantVar);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部