Jump to content
  • 0

Как поставить условие в массиве?


tnkp
 Share

Question

Здравствуйте уважаемые!

Делаю мультиязычный сайт с помощью wpml. Есть функция wp_json_send_error в которой нужно применить условие.

Вот условие 

<?php if(ICL_LANGUAGE_CODE=='en'): ?>Email error<?php elseif(ICL_LANGUAGE_CODE=='it'): ?>Email error<?php elseif(ICL_LANGUAGE_CODE=='ru'): ?>Неправильный email<?php endif; ?>

 

Вот функция в коде (их много и перевести нужно все, для примера одна)

wp_send_json_error(array('message' => 'Неправильный email', 'redirect' => false));

 

Собственно нужно чтобы условие сработало в массиве вместо фразы "Неправильный email", как сделать ума не приложу. Все попытки были тщетны. Надежда на вас.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Можно использовать вложенные тернарные операторы

array('message'=>(ICL_LANGUAGE_CODE=='ru'?'Неправильный email':(ICL_LANGUAGE_CODE=='en'?'Error email':'')))

 

Но лучше вынести фразы в словарь, примерно так:

$lang['ru']='Неправильный email';
$lang['en']='Error email';
$message = $lang[ICL_LANGUAGE_CODE]?$lang[ICL_LANGUAGE_CODE]:$lang['en'];
$arr = array('message'=>$message);

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy