Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried the following:

Basically, it should say: If there's no cookie, get lang from web browser (this part works and that's the job of lang.php). If there is cookie, the session will take its value from the cookie. If there's nothing, leave it as English.

session.php:

/* Class constructor */
function Session(){
    $this->time = time();
    $this->startSession();
}

function cf($filename){//function to clean a filename string so it is a valid filename
    $fp = explode('/',$filename);
    $num = count($fp);
    return $fp[$num-1];
}

/**
 * startSession - Performs all the actions necessary to
 * initialize this session object. Tries to determine if the
 * the user has logged in already, and sets the variables
 * accordingly. Also takes advantage of this page load to
 * update the active visitors tables.
 */
function startSession(){
    session_start();   //Tell PHP to start the session

    /* Set referrer page */
    if(isset($_SESSION['url'])){
        $this->referrer = $search = $this->cf($_SESSION['url']);
    }else{
        $this->referrer = "/";
    }

    /* Set current url */
    $this->url = $_SESSION['url'] = $this->cf($_SERVER['PHP_SELF']);

    /* Set user-determined language: */
    //set up languages array:
    $langs = array('en','es','zh');
    //
    if(isset($_GET['lang'])){
        if(in_array($_GET['lang'],$langs)){
            $this->lang =  $_SESSION['lang'] = $_GET['lang'];
            setcookie($_SESSION['lang'], time() + (3600 * 24 * 30));
        }
    }
    else if(isSet($_COOKIE['lang'])) {
        $_SESSION['lang'] = $_COOKIE['lang'];
    }
    else {
        $_SESSION['lang'] = 'en';
    }
}

};

share|improve this question

2 Answers

up vote 1 down vote accepted

The args to setcookie are as follows:

bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )

As such, the way you're using it seems a little odd. (It's not incorrect that said.) I'd have thought that something like...

setcookie('lang', $_SESSION['lang'], time() + (3600 * 24 * 30));

...would be a bit more obvious, and is perhaps what you're after. (This is what $_COOKIE['lang'] will require.)

share|improve this answer
@middaparka Haha sorry, my mistake. – alexchenco Feb 28 '10 at 13:36

The first parameter of setcookie is the cookie name and the second the cookie value. So in this case $_SESSION['lang'] is the cookie name and time() + (3600 * 24 * 30) the value:

setcookie($_SESSION['lang'], time() + (3600 * 24 * 30));
share|improve this answer
@Gumbo I do have setcookie($_SESSION['lang'], time() + (3600 * 24 * 30)); – alexchenco Feb 28 '10 at 13:16
@janoChen: Yes, and that’s the point. You didn’t specify the cookie name. Or to be more specific: You specified the value of $_SESSION['lang'] as cookie name and the value of time() + (3600 * 24 * 30) as cookie value. – Gumbo Feb 28 '10 at 13:23
I think you are right, I had to specify the name "lang". this worked: setcookie("lang", $_SESSION['lang'], time() + (3600 * 24 * 30)); Thanks – alexchenco Feb 28 '10 at 13:27
Hmm... wonder if I'm invisible or something. :-) – middaparka Feb 28 '10 at 13:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.