Région de recherche :

Date :

https://stackoverflow.com › questions › 4775294

Parsing a string into a boolean value in PHP - Stack Overflow

There is a native PHP method of doing this which uses PHP's filter_var method: $bool = filter_var($value, FILTER_VALIDATE_BOOLEAN); According to PHP's manual: Returns TRUE for "1", "true", "on" and "yes". Returns FALSE otherwise.

https://stackoverflow.com › questions › 7336861

How to convert string to boolean php - Stack Overflow

To explicitly convert a value to boolean, use the (bool) or (boolean) casts. However, in most cases the cast is unnecessary, since a value will be automatically converted if an operator, function or control structure requires a boolean argument.

https://www.php.net › manual › fr › language.types.boolean.php

PHP: Booléen - Manual

Le type bool ne possède que deux valeurs, et est utilisé pour exprimer une valeur de vérité. Il peut être soit true soit false. Syntaxe ¶. Pour spécifier un booléen littéral, utilisez la constante true ou false. Les deux sont insensibles à la casse. <?php. $foo = true; // assigne la valeur TRUE à $foo. ?>

https://www.geeksforgeeks.org › how-to-convert-string-to-boolean-in-php

How to convert string to boolean in PHP? - GeeksforGeeks

Use filter_var () function to convert string to boolean value. Examples: Input : $boolStrVar1 = filter_var('true', FILTER_VALIDATE_BOOLEAN); . Output : true. Input : $boolStrVar5 = filter_var('false', FILTER_VALIDATE_BOOLEAN); Output : false.

https://www.php.net › manual › en › function.boolval

PHP: boolval - Manual

PHP Manual. Function Reference. Variable and Type Related Extensions. Variable handling Functions. Change language: boolval. (PHP 5 >= 5.5.0, PHP 7, PHP 8) boolval — Get the boolean value of a variable. Description ¶. boolval (mixed $value): bool. Returns the bool value of value. Parameters ¶. value. The scalar value being converted to a bool.

https://www.devenir-webmaster.com › V2 › TUTO › CHAPITRE › PHP › 07-booleen

Les booléens en PHP 8 et les conversions vers des booléens

#1 Les booléens. En PHP, une valeur booléenne est du type bool. Ce type ne contient que deux valeurs littérales : la valeur true ou la valeur false. Ces deux valeurs sont insensibles à la casse. #2 Les conversions vers des booléens.

https://runebook.dev › fr › docs › php › language.types.boolean

PHP - Booleans [fr] - Runebook.dev

Pour convertir explicitement une valeur en booléen, utilisez le cast (bool) . Généralement, cela n'est pas nécessaire car lorsqu'une valeur est utilisée dans un contexte logique, elle sera automatiquement interprétée comme une valeur de type bool.

https://www.w3schools.com › php › func_var_boolval.asp

PHP boolval() Function - W3Schools

The boolval () function returns the boolean value of a variable. Syntax. boolval (variable); Parameter Values. Technical Details. PHP Variable Handling Reference. W3schools Pathfinder. Track your progress - it's free! Log in Sign Up.

https://www.amitmerchant.com › safely-convert-any-value-to-boolean-in-php

Safely convert any value to boolean in PHP - Amit Merchant

Safely convert any value to boolean in PHP. February 28, 2022 · PHP. Converting some values to boolean is a common task while building applications. Now, these values can be anything. A pair of numbers. Let’s say 1/0. A pair of strings. Let’s say Yes/No or On/Off.

https://docs.phplang.net › en › language.types.boolean.php

Booleans - PHP Manual

To explicitly convert a value to bool, use the (bool) cast. Generally this is not necessary because when a value is used in a logical context it will be automatically interpreted as a value of type bool .