Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3596038
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T19:55:54+00:00 2026-05-18T19:55:54+00:00

A couple questions here.. What is the following syntax? What do all the pieces

  • 0

A couple questions here..

  1. What is the following syntax?
  2. What do all the pieces mean?

    (( ! is_array($data)) ? $data : '')
    
  3. How is it used in the function at the end?

    function form_input($data = '', $value = '', $extra = '')
    {
        $defaults = array('type' => 'text', 'name' => (( ! is_array($data)) ? $data : ''), 'value' => $value);
        return "<input "._parse_form_attributes($data, $defaults).$extra." />";
    }
    

Thankyou. Blake

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T19:55:55+00:00Added an answer on May 18, 2026 at 7:55 pm

    Ok let me try as far as I understand you question.

    What is the following syntax?

    It is a function definition.

    What do all the pieces mean?

    This is the ternary operator. It means: If $data is not an array (!is_array($data)), return $data (? $data) otherwise return an empty string (: '')

    It is a shorthand for if-else.

    How is it used in the function at the end?

    Not sure what you mean here. A function _parse_form_attributes($data, $defaults) is called witch seems to return a string.

    If it in your question refers to $defaults, then it is just an array that gets build and that contains the following values:

    Array (
        'type' => 'text',
        'name' => $data, // or empty string if $data is an array,
        'value' => $value
    );
    

    It is used to build an input element, that will look like this:

    <input type="text" 
           name="(value of $data or empty)" 
           value="(value of $value)"
           (value of $extra)
           />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A couple questions here.. What is the following syntax? What do all the pieces
I've read up on couple of questions here on SO about passing data between
I have couple of questions here. I am using the following to write a
I've looked at a couple of similar questions here but I still can's seem
I've seen a couple of SQLite performance questions here on Stackoverflow, but the focus
Following on from my question here , I'm trying to create a generic value
There are actually a couple of questions here. For what I'm doing, I'm doing
There are many questions about events in interfaces. Here are a couple: Raising events
After studying Miles Jones cupcake forum plugin, I have a couple of questions here:
I saw a couple of questions here about the diference between && and &

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.