6

我正在建立一个具有双语和两个标志作为入口页面的网站。我计划在<form method="post">标志周围使用,以便用户可以选择他们想要的语言。

然后在以下页面上我想使用类似的东西:

<?php
if( $_POST['language']=='uk' ){
    echo $uk;
}elseif( $_POST['language']=='french' ){
    echo $french;}
?>

所以在点击标志时,他们选择了他们想要的语言。这只会在他们单击标志后在下一页上起作用,还是他们可以继续导航到不同的页面并且仍然选择选择的语言?

如果这不起作用,那还能怎么做?


更新:

我认为我之前没有说清楚我正在使用 Wordpress,它显然不喜欢$_SESSION.

我在一个名为 region.php 的模板上有这个来提交语言选择:

    <form action="<?php the_permalink(); ?>/home" name="region" method="post">              
        <div id="uk">
            <a href="javascript:document.region.submit()" name="UK">
                <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/-uk.png" width="259" height="160" alt="UK" />
            </a>
            <h1 style="color:black!IMPORTANT;">Enter United Kingdom site</h1>
        </div>

        <div id="world">
            <a href="javascript:document.region.submit()" name="World">
                <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/
world.png" width="258" height="160" alt="
Rest of the World" />
            </a>
            <h1 style="color:black!IMPORTANT;">Enter Rest of the World site</h1>                    
            </div>  
    </form>

我需要在每个其他模板上添加什么来检查选择了哪种语言?为了帮助示例,如果选择了英国,那么它可以只回显“英国”,如果选择了世界其他地区,那么它可以只显示“世界”。

这需要跨多个页面工作,因此如果他们转到关于页面,它会检查语言,然后如果他们导航到联系页面,它会再次检查语言 - 所有这些都必须来自初始语言选择。

4

6 回答 6

15

我会将选择放入一个$_SESSION变量中。这将一直伴随着他们,直到他们离开。你也可以很好地使用cookie。实际上,将两者结合起来会很棒,它将不允许 cookie 在一次访问的基础上运行的用户联系在一起,而启用 cookie 的人只需选择一次。

编辑:工作代码示例:

<form action="<?php the_permalink(); ?>/home" name="region" method="post">              
    <div id="uk">
    <a href="javascript:document.region.submit()" name="UK">
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/=uk.png" width="259" height="160" alt="UK" />
    </a>
    <h1 style="color:black!IMPORTANT;">Enter United Kingdom site</h1>
    </div>

    <div id="world">
    <a href="javascript:document.region.submit()" name="World">
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/world.png" width="258" height="160" alt="Rest of the World" />
    </a>
    <h1 style="color:black!IMPORTANT;">Enter Rest of the World site</h1>                    
    </div>  
</form>
// I assume that this form sends a POST request to the following page URL.

表单重定向到的页面:

<?php

    session_start();
    if(isset($_POST['country'])) 
    // assuming that your form returns a field called 'country'...
    {
        $_SESSION['myCountry'] = htmlspecialchars($_POST['country']);
        // Assumes that myCountry is now 'UK' or 'World'...
    }
    header('Location: http://www.example.com/yourIndexPage.php');
    // You want to use a quick snippet to process the form and 
    // then redirect them away. This makes for less stupid BACK actions
    // in the browser as well as data being resent to the code.
?>

yourIndexpage.php

<?php

    // As the $_SESSION is now set, we can use it in the page as follows:
    session_start();
    switch($_SESSION['myCountry'])
    {
        case 'UK':
            echo $UK;
            // And anything else you want to do with the UK language.
            break;
        case 'World':
            echo $world;
            // etc etc etc...
            break;
        default:
            // echo out default stuff, probably 'World' at a guess.
            break;
    }

?>

如果您使用的是 wordpress,您可能应该阅读这个

于 2012-08-03T12:49:48.857 回答
2

如果您不想使用 cookie,您可以这样做。

session_start();    
if(!isset($_SESSION['language'])){
    $_SESSION['language'] = 'English'; //default language
}

然后当你有 2 个按钮时,一个是英语,另一个是德语或任何你想要的。

<a href="?language=English">English</a>
<a href="?language=German">German</a>

您可以使用此检查来验证页面应该是什么语言。

if(isset($_GET['language'])){
    if($_GET['language'] == 'English'){
        $_SESSION['language'] = 'English';
    }
    if($_GET['language'] == 'German'){
        $_SESSION['language'] = 'German';
    }
} 
于 2012-08-03T13:16:19.933 回答
2

答案

首先,为了向 wordpress 站点添加区域/多语言支持,没有比这个插件更好的选择:http ://wpml.org/ 。它有与之相关的成本,但它并不令人望而却步(您需要为出色的支持付费)。

其次,您不能默认使用 $_SESSION。WP 在设计上是无状态的。也就是说,网上有大量的插件和教程来获得这个功能。

代码的东西

您的原始表单 html 没有输入。这是一个什么都不提交的表格。此表单有两个名称相同的提交location。因此,无论单击哪个按钮,都会根据$_POST['location'].

<form action="<?php the_permalink(); ?>/home" name="region" method="post">              
    <div id="uk">
        <input type="submit" name="location" value="UK" />
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/uk.png" width="259" height="160" alt="UK" />
        <h1 style="color:black!IMPORTANT;">Enter United Kingdom site</h1>
    </div>

    <div id="world">
        <input type="submit" name="location" value="World" />
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/world.png" width="258" height="160" alt="Rest of the World" />
        <h1 style="color:black!IMPORTANT;">Enter Rest of the World site</h1>                    
    </div>  
</form>

编写一个 wordpress 操作来处理帖子。将此添加到主题的函数文件中。查看http://php.net/manual/en/function.setcookie.php获取 setcookie 文档。

function set_location_cookie()
{
    if(isset($_POST['location']))
    {
        setcookie('location', $_POST['location'], time()+1209600);
    }
}
add_action('init', 'set_location_cookie');

然后,在您想知道位置的任何地方:

<?php echo $_COOKIE["location"]; ?>

附加信息

我最初单击 UK 开始并设置 cookie,然后我返回并单击 World 但并没有复制带有 world 的 cookie,它只是再次显示 UK。每次做出不同的选择时,是否可以擦除 cookie?

所以这是一个关于 cookie 如何在技术层面上工作的问题:

当浏览器执行此操作 [请求站点] 时,它会在您的计算机上查找 [您的站点] 设置的 cookie 文件。如果它找到一个 cookie 文件,您的浏览器会将文件中的所有名称-值对连同 URL 一起发送到 [the] 服务器。如果它没有找到 cookie 文件,它将不发送任何 cookie 数据。

最初不会发送新的 cookie 数据,b/c 直到请求从浏览器发送到服务器后,新的 cookie 数据才被保存并可用于与请求一起发送。

那你怎么做呢? 在成功设置 cookie 事件后重定向。

function set_location_cookie()
{
    if(isset($_POST['location']))
    {
        // Set Cookie
        setcookie('location', $_POST['location'], time()+1209600);
        // Reload the current page so that the cookie is sent with the request
        header('Location: '.$_SERVER['REQUEST_URI']);
    }
}
add_action('init', 'set_location_cookie');

是否可以将标志的图像用作提交按钮? 是的,使用 CSS 来设置输入按钮的样式。

为每个输入添加一个 id:id="uk-button"id="world-button"

CSS:

#uk-button {
    background-image: url(uk-flag.png);
    background-size: 100%;
    background-repeat:no-repeat;
}
#world-button {
    background-image: url(world-flag.png);
    background-size: 100%;
    background-repeat:no-repeat;
}
于 2012-08-16T13:30:17.873 回答
1

$_POST 变量包含仅包含在单个请求中的数据(请参阅POST (HTTP)),因此他们将在“单击”或发布某些表单后看到适当的内容,因此仅在请求到您的页面后。

为了更永久地存储用户设置,有必要将这些设置保存到“会话”数据中,这些数据在 $_SESSION 变量中可用并且是持久的,因此在访问者浏览您的页面之前一直可用。更持久但不那么纯粹的解决方案是将设置保存到 cookie 中,在这种情况下您可以定义过期时间,以便下次访问时也会使用它们。

看一些例子:

<?php

session_start();
$language = $_POST['language'];
$_SESSION['language'] = $language;

...和其他地方:

<?php

session_start();
$language = $_SESSION['language'];

或者您可以使用 cookie:

<?php

session_start();
$language = $_POST['language'];
set_cookie('language', $language, 365 * 24 * 60 * 60);   
// will live for one year

...和其他地方:

$language = $_COOKIE['language'];
于 2012-08-03T13:00:32.533 回答
0

它不适用于其他页面。POST 变量并非一直发送。它仅在提交表单时发送。您可以将 COOKIES 用于您的任务。将变量保存在那里并在每一页上检查它。

于 2012-08-03T12:52:31.710 回答
0

如果您希望选择持续存在(或通过GETlike继续传递值?lang=uk,但这不是很优雅),您确实需要会话/cookie。顺便说一句,您不需要在默认行为被阻止并且其父表单使用 JavaScript 提交的超链接中的图像。你可以简单地使用这样的东西:

<input alt="en-UK" name="lang" src="uk-flag.png" type="image" value="en-UK">

这将作为一个图像,也是一个表单提交按钮。

于 2012-08-16T01:38:23.803 回答