繁体   English   中英

PHP如何从URL替换特定的字符串

[英]PHP How to replace specific string from an URL

我正在用PHP建立一个多语言网站,我拥有用于​​语言更改的类,我可以通过设置$_SESSION或仅通过更改url中的lang值来做到这一点,我正在为Apache重写mod,因此我的网址是这样的:

http://www.server.com/en/something/else/to/do

我有一个功能,可以在整个站点中显示一个上方的栏,并且在该栏中我具有用于语言更改的标志。

我使用此类更改语言:

class IDIOMAS {

    private $UserLng;
    private $langSelected;
    public $lang = array();


    public function __construct($userLanguage){

        $this->UserLng = $userLanguage; 
    }

    public function userLanguage(){

        switch($this->UserLng){

            case "en":
                $lang['PAGE_TITLE'] = TITULO().' | Breaking news, World news, Opinion';

                // Menu

                $lang['MENU_LOGIN'] = 'Login';
                $lang['MENU_SIGNUP'] = 'Sign up';
                $lang['MENU_LOGOUT'] = 'Logout';
                $lang['MENU_SEARCH'] = 'Search';

                //Suscripciones
                $lang['SUBSCRIBE_SUCCESS'] = "¡Thank you, we'll let you know when we become online!";
                $lang['SUBSCRIBE_EMAIL_REGISTERED'] = 'This e-mail is already registered';
                $lang['SUBSCRIBE_EMAIL_INVALID'] = 'The e-mail you entered is invalid';
                $lang['SUBSCRIBE_EMAIL_WRITE'] = 'You must write down your e-mail';
                $lang['SUBSCRIBE_TITLE'] = '¡Subscribe!';
                $lang['SUBSCRIBE_CONTENT'] = 'And be the first to read the best articles in the web';
                $lang['SUBSCRIBE_PLACEHOLDER'] = 'Enter your E-mail';
                $lang['SUBSCRIBE_SEND'] = 'SEND';

                //LOGIN
                $lang['LOGIN_TITLE'] = 'Please Login to your account';
                $lang['LOGIN_USER'] = 'User';
                $lang['LOGIN_PASSWORD'] = 'Password';
                $lang['LOGIN_ERROR'] = '¡User and/or password invalid!';

                //REGISTER
                $lang['REGISTER_NAME'] = 'Please write your name';
                $lang['REGISTER_LAST_NAME'] = 'Please write your last name';
                $lang['REGISTER_EMAIL'] = 'Write your E-mail';
                $lang['REGISTER_CITY'] = 'Enter your City name';
                $lang['REGISTER_COUNTRY'] = '¿Where are you from?';
                $lang['REGISTER_ZIP_CODE'] = 'Enter your ZIP Code';
                $lang['REGISTER_DATE_BIRTH'] = 'Please enter your date of birth';


                return $lang;
                break;

            case "es":
                $lang['PAGE_TITLE'] = TITULO().' | Noticias de última hora, Noticias mundiales, Matrices de opinión';

                // Menu

                $lang['MENU_LOGIN'] = 'Entrar';
                $lang['MENU_SIGNUP'] = 'Registrarse';
                $lang['MENU_LOGOUT'] = 'Salir';
                $lang['MENU_SEARCH'] = 'Buscar';

                //Suscripciones
                $lang['SUBSCRIBE_SUCCESS'] = "¡Gracias, te avisaremos cuando estemos online!";
                $lang['SUBSCRIBE_EMAIL_REGISTERED'] = 'Este email ya se encuentra registrado';
                $lang['SUBSCRIBE_EMAIL_INVALID'] = 'El correo que introdujiste es inválido';
                $lang['SUBSCRIBE_EMAIL_WRITE'] = 'Debes escribir tu email';
                $lang['SUBSCRIBE_TITLE'] = '¡Suscríbete!';
                $lang['SUBSCRIBE_CONTENT'] = 'Y se el primero en leer las mejores noticias y artículos en la web';
                $lang['SUBSCRIBE_PLACEHOLDER'] = 'Introduce tu E-mail';
                $lang['SUBSCRIBE_SEND'] = 'Enviar';

                //LOGIN
                $lang['LOGIN_TITLE'] = 'Por favor inicia sesión en tu cuenta';
                $lang['LOGIN_USER'] = 'Usuario';
                $lang['LOGIN_PASSWORD'] = 'Clave';
                $lang['LOGIN_ERROR'] = '¡Usuario y/o clave incorrectos!';

                //REGISTRO
                $lang['REGISTRO_NOMBRE'] = 'Por favor introduce tu nombre';
                $lang['REGISTRO_APELLIDO'] = 'Por favor introduce tu apellido';
                $lang['REGISTRO_CORREO'] = 'Introduce tu correo electrónico';
                $lang['REGISTRO_CIUDAD'] = 'Introduce el nombre de tu ciudad';
                $lang['REGISTRO_PAIS'] = '¿De donde eres?';
                $lang['REGISTRO_CODIGO_POSTAL'] = 'Introduce tu Código Postal';
                $lang['REGISTRO_FECHA_NAC'] = 'Por favor introduce tu fecha de nacimiento';

                return $lang;
                break;

        }
    }
}

我将此类与以下代码一起使用:

$language = new IDIOMAS($lang);
$langArray = array();
$langArray =  $language->userLanguage();

并设置如下语言:

if (!isset($_SESSION['idioma'])){
    $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
    $_SESSION['idioma'] = $lang;
}else{
    $lang = $_SESSION['idioma'];
}

if(isset($_GET['lang']) && in_array($_GET['lang'], array('en', 'es'))){
    $_SESSION['idioma'] = $_GET['lang'];
    $lang = $_SESSION['idioma'];
}

现在我遇到的问题是,当我尝试更改所在页面的语言时,我的意思是,如果我位于www.server.com上,则不需要在/ es或/ en处加上其他内容结束更改lang,但如果我在www.server.com/es/something/else/to/do中,则需要专门更改/ es参数。

我有一个函数可以在登录或注册时获取当前的重定向URL。

function getUrl() {
  $url  = @( $_SERVER["HTTPS"] != 'on' ) ? 'http://'.$_SERVER["SERVER_NAME"] :  'https://'.$_SERVER["SERVER_NAME"];
  $url .= $_SERVER["REQUEST_URI"];
  return $url;
}

我试图在该函数中更改lang值没有成功,

非常感谢任何帮助

这是我会做的简单解决方案。 我不知道它是否正是您要使用的:

 // Find the first forward slash location
 $pos1 = strpos($url,'/'); // The whole URL
 // You only need this next line if your language codes are different sizes
 // If they are always 2 then can alter the code to not use it
 $pos2 = strpos($url,'/',$pos1); // Now find the second by offsetting

 $base = substr($url,0,$pos1); // Get domain name half
 $end = substr($url,$pos2); // Get everything after language area

 // Now from the function return the result
 $val = $base.'/'.$newlang.'/'.$end;
 return $val;

您可能需要在$ pos上加上或减去1才能返回正确的值,如下所示:

 $pos2 = strpos($url,'/',$pos1+1); // In case its finding the wrong slash
 $base = substr($url,0,$pos1-1); // In case its returning the slash
 $end = substr($url,$pos2+1); // In case its return the slash

请进行调整和测试,这只是实际的概念,我没有测试过此片段。

最后,我通过将getUrl函数修改为:

function getUrl($newlang) {
    $url  = @( $_SERVER["HTTPS"] != 'on' ) ? 'http://'.$_SERVER["SERVER_NAME"] :  'https://'.$_SERVER["SERVER_NAME"];
    $url .= $_SERVER["REQUEST_URI"];
    $substr = substr($url,27,3);
    $base = substr($url,0,28);
    $resto = substr($url,31,1000);
    $newUrl = $base.$newlang."/".$resto;
    return $newUrl;
}

并调用类似getUrl(“ en”)或getUrl(“ es”)的函数;

也许这对其他人可能有用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM