Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6973047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:03:28+00:00 2026-05-27T17:03:28+00:00

I implemented a multilanguage feature for my web application. I get the values by

  • 0

I implemented a multilanguage feature for my web application. I get the values by this

echo $lang['the key here'];

and i keep the values in a separate fiels like this

$lang['confirm'] = 'COnfirm the message';
$lang['deny'] = 'Deny the invitation';

so i want if somebody calls a undefined key like $lang[‘sdefscfef’] , insted of printing white space, I want to print the key name i.e ‘sdefscfef’

I want to make it as a function

function translate($string) {
if(! isset($string)) {
echo THE KEY;
}
else {
echo $string;
}
}

translate($lang['asdadad']);

and to print the key

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:03:29+00:00Added an answer on May 27, 2026 at 5:03 pm

    Instead of printing the array directly I would create a function (_() is common) and use it like so:

    echo _('Welcome');
    

    And the _() function would then look in the $language array:

    function _ ($str) {
        global $language;
    
        return isset($language[$str]) ? $language[$str] : $str;
    }
    

    Something like that.

    If you want to avoid using a global variable you can wrap all of this in a class like this:

    class Lang {
        private $lang = array();
    
        public static translate ($str) {
            return isset(self::$lang[$str]) self::$lang[$str] : $str;
        }
    }
    

    And then, to avoid having to type Lang::translate() everywhere you can do this:

    function _ ($str) {
        return Lang::translate($str);
    }
    

    Here’s an example of a little more advanced Language class: http://code.google.com/p/sleek-php/source/browse/trunk/Core/Lang.php

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I implemented OpenID support for an ASP.Net 2.0 web application and everything seems to
I implemented 6 months ago in our web application site(Asp.Net) a page where you
Implemented a generic repository with several Methods. One of those is this: public IEnumerable<T>
Already implemented performance boosters : - Get compatible image of GraphicsConfiguration to draw on
I implemented threading in my application for scraping websites. After all the sites are
I implemented simple server-client chat in Java. Here the source for the server: public
I implemented a quick search in my application. But when I turned the screen,
I implemented a feature that lets users set default profile photos and photo-album cover
Can the swing application framework be used to implement multilanguage swing applications? If so,
I implemented lazy image load for my UITableView using NSUrlConnection. This is all working

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.