Jump to content

Switch control structure Problem


atitthaker

Recommended Posts

Can I compare switch expression with case expression by === instead of default ==. I meant can I compare it with strict type checking instead of simple value checking. I know to write the same in case but I dont know whether any such method is available with PHP built in to it or not???
Link to comment
https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/
Share on other sites

You can use an if/else or if/elseif/else state in side a case clause:
[code=php:0]<?php

$str = TRUE;
$str2 = 'TRUE';

switch($str)
{
    case TRUE:
        // now check the actual type of $str
        if($str === $str2)
        {
            echo 'str is a string';
        }
        else
        {
            echo 'str is not a string';
        }
    break;
}

?>[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.