Jump to content
Дизайн и модификация IPS Community IPBSkinsBETA
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
TemKa_SD

Как лучше указать условие для пустой ячейки?

Recommended Posts

Здравствуйте, вот код:

 

                foreach(\IPS\Db::i('stats')->select('hero, newcolour', 'stats_dotaplayers', ['gameid=?', $row['gameid']]) as $dotaPlayer) {
                   $hero = mb_strtoupper($dotaPlayer['hero']);
                   $players[intval($dotaPlayer['newcolour'])] = $this->getHero($hero) ? $this->getHero($hero) : 'BLANKX';
               }

 

Здесь колонка hero может быть пустой, как указать для нее заглушку?

Share this post


Link to post

Так сделайте в методе getHero проверку на пусто

И тогда

$players[intval($dotaPlayer['newcolour'])] = $this->getHero($hero);

 

Либо

                foreach(\IPS\Db::i('stats')->select('hero, newcolour', 'stats_dotaplayers', ['gameid=?', $row['gameid']]) as $dotaPlayer) {
                   $players[intval($dotaPlayer['newcolour'])] = $dotaPlayer['hero'] ? $this->getHero(mb_strtoupper($dotaPlayer['hero'])) : 'BLANKX';
               }

Share this post


Link to post

Так сделайте в методе getHero проверку на пусто

 

Я пробовал в шаблоне, но там не работает, так как идут какие-то символы: http://prntscr.com/l9cpv9 нужно именно поле проверять.

Share this post


Link to post

Я пробовал в шаблоне,

Не шаблон.

 

public function getHero($hero)
{
   if (!$hero)
   {
       return 'BLANKX';
   }

   // Другой код
}

Share this post


Link to post

Так в чем проблема?

Share this post


Link to post

Кодировку проверьте

UTF-8 без BOM

Share this post


Link to post

Без БОМ надо.

Не знаю, что у Вас за редактор, и где искать настройки.

Прикрепите php-файл

Share this post


Link to post

Ну, у Вас значение переменной $hero может быть чем угодно.

Вы в базе смотрели значения?

Share this post


Link to post

ку ку

 

А понял, скрины не грузит. Я так и не решил этот вопрос, гляньте плиз чуть позже скрины. Там я показал, что ячейки пустые.

Edited by TemKa_SD

Share this post


Link to post

Там я показал, что ячейки пустые.

Там могут быть невидимые символы

Измените значение на 0 и посмотрите

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...