Jump to content

wadej30084

New Members
  • Posts

    8
  • Joined

  • Last visited

wadej30084's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Wow, this a big explanation, many thanks Phill! P.S. I keep in mind about new thread.
  2. Hi, maybe I'm saying something wrong, but I'm talking about this piece of code, another from first post: function getAdminName() { global $admin; return ($admin['gender'] ? 'Mr' : 'Mrs').' '.$admin['fullname']; } Help is needed with it, be answering on the question: "This code isn't ideal. Explain what the problem is and what you could do to fix it"
  3. Thanks, for reply. I know what is ternary operator, also I know about latest deprecated features about this operator in 7.4 version, but i don't see here any problem with it, any complex use like 1 ? 2 : 3 ? 4 : 5; , the problem is what i don't understand what I'm must looking for in this piece of code. Any advice?
  4. Ok, I see you like it, I have another one. Same situation have code piece: function getAdminName() { global $admin; return ($admin['gender'] ? 'Mr' : 'Mrs').' '.$admin['fullname']; } and simple question: "This code isn't ideal. Explain what the problem is and what you could do to fix it" it's all, please help! Today I have no idea what's wrong except this is creepy realization and I do this in totally another way. P.S. ginerjm asking what is it, this is a part of practical tasks of technical php test and I trying do my best to solve it, but even if I fail on exam I need to understand what's it about. All this about: "You need to think globally, we need to see how you think." And like Ross Geller's little hand monkey, but in my head, beating in cymbals plates, with deep understanding of this code problem eyes look. Thanks for help!
  5. I have an question for it "Explain what the problem is and what you could do to fix it" and nothing more, that's why I'm stacked.
  6. It's all about using ++$i instead $i++ or what, because I ran this code and stuck on understand what wants from me?
  7. Hi there, i have an code <?php $a = [ 0 => 10, ]; $i = 0; $a[$i++] = $i; and question "Explain what the problem is and what you could do to fix it" I read this and I totally not understand what it for and how it use and what problem hidden here. Please help!
×
×
  • 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.