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 7405081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:20:57+00:00 2026-05-29T05:20:57+00:00

I want the input to accpet ‘true’ or ‘false’ only, so I am trying

  • 0

I want the input to accpet ‘true’ or ‘false’ only, so I am trying to use FILTER_VALIDATE_BOOLEAN to do that,

if (!filter_var('false', FILTER_VALIDATE_BOOLEAN)) 
{
    $error = true;
    echo 'error';
}

It echoes the error message but it should not.

How can I make it right?

  • 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-29T05:20:58+00:00Added an answer on May 29, 2026 at 5:20 am

    Have a look at the manual http://www.php.net/manual/en/filter.filters.validate.php

    Your syntax/usage is correct. filter_var('false', FILTER_VALIDATE_BOOLEAN) however does not verify the pattern, it converts the input string into the accordingly typed value.

    To make it explicit:

    var_dump(filter_var('false', FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE));
    

    Returns the boolean false
    .

    var_dump(filter_var('true', FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE));
    

    Returns the boolean true
    .

    var_dump(filter_var('wrong', FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE));
    

    Returns NULL.
    That’s why I added the second option. The input string does neither classify as true nor false.

    So you actually have to check with === NULL for your condition. That would give you the result you probably desired:

    if (filter_var('false', FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) === NULL) 
    {
        echo "Input did not evaluate to boolean 'false' nor 'true'"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using input type=file, Now my requirement is that I only want to
I want to write a PHP script that I can use from the command
all, I'm making a shopping cart that only accept input number with 1 decimal
I notice that avisynth can accept as input a live directshow source only through
Just making a very very simple order form. Want a input box ( only
I am making a library that accept Views as input. I want to rotate
I need to accept arbitrary user input. Later, I want to copy that input,
I am trying to use the SplitDateTimeWidget but want it to accept date in
I want my input or textarea value only accept <br> for having new lines
Say I want to have a simple web app that takes some user input,

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.