atitthaker Posted August 9, 2006 Share Posted August 9, 2006 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 More sharing options...
nethnet Posted August 9, 2006 Share Posted August 9, 2006 I have absolutely no idea what you mean by that. Could you rephrase that a bit more clear? Link to comment https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/#findComment-71647 Share on other sites More sharing options...
atitthaker Posted August 9, 2006 Author Share Posted August 9, 2006 I meant that switch...case compares by values only, not by type. Right!!What if I want it to check type also in addition to values.... Link to comment https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/#findComment-71652 Share on other sites More sharing options...
king arthur Posted August 9, 2006 Share Posted August 9, 2006 You'd be better off using an IF....ELSEIF construct. Link to comment https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/#findComment-71673 Share on other sites More sharing options...
wildteen88 Posted August 9, 2006 Share Posted August 9, 2006 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] Link to comment https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/#findComment-71677 Share on other sites More sharing options...
atitthaker Posted August 9, 2006 Author Share Posted August 9, 2006 So PHP do not have built in support for comparing it that way... Link to comment https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/#findComment-71711 Share on other sites More sharing options...
wildteen88 Posted August 9, 2006 Share Posted August 9, 2006 Not with a switch no. Link to comment https://forums.phpfreaks.com/topic/16994-switch-control-structure-problem/#findComment-71747 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.