In PHP can I get the total number of case statements in a switch statement? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:29:15Zhttp://stackoverflow.com/feeds/question/795417http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement3In PHP can I get the total number of case statements in a switch statement?John2009-04-27T21:46:34Z2009-07-23T22:05:14Z
<p>Is there a way to return the total number of (case) instances there are in a switch statement? Something like this:</p>
<pre><code>$id = $_GET['id'];
switch ($id) {
case "item1" :
$data = 'something1';
break;
case "item2" :
$data = 'something2';
break;
}
echo $data;
</code></pre>
<p>But the reasoning for it is there are multiple files with these switch statements in them, but the number of them vary depending on the file. I'd ideally like to be able to loop through these switch statements by incrementing the "id". Any ideas on if this is possible?</p>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/795431#7954311Answer by jim for In PHP can I get the total number of case statements in a switch statement?jim2009-04-27T21:50:46Z2009-04-27T21:50:46Z<p>Not without altering the value of $id and removing break statements.. but that kind of defeats the purpose. Is there a reason you need to know how many?</p>
<p>I would just grep the files you want to find out about</p>
<pre><code>find -name '*php' | xargs grep 'case'
</code></pre>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/795441#7954416Answer by Gumbo for In PHP can I get the total number of case statements in a switch statement?Gumbo2009-04-27T21:54:11Z2009-04-27T21:54:11Z<p>If you’re just assigning values based on another value you could use an <a href="http://docs.php.net/manual/en/language.types.array.php" rel="nofollow">array</a> instead:</p>
<pre><code>$idToData = array(
'item1' => 'something1',
'item2' => 'something2',
);
$data = 'default';
if (isset($_GET['id']) && array_key_exists($_GET['id'], $idToData)) {
$data = $idToData[$_GET['id']];
}
echo $data;
</code></pre>
<p>The advantage of an array is that it can be <a href="http://docs.php.net/manual/de/language.types.array.php#language.types.array.syntax.modifying" rel="nofollow">extended</a> and the number of items can be counted with <a href="http://docs.php.net/count" rel="nofollow"><code>count</code></a>. </p>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/795456#7954561Answer by Jason Musgrove for In PHP can I get the total number of case statements in a switch statement?Jason Musgrove2009-04-27T21:59:02Z2009-04-27T21:59:02Z<p>Ah - I think I see what you're after. What you could do is add a default: case that terminates the loop, rather than trying to count. E.g.</p>
<pre><code>for($id = 1; !$quit; $id++)
{
switch("item" . $id) {
case "item1":
// Do something
break;
case "item<n>":
// Do something else
break;
default:
$quit = true;
}
}
</code></pre>
<p>Question is: why not just do all this without a loop and case statements by just ... putting one statement after another?</p>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/795813#7958131Answer by Frank Farmer for In PHP can I get the total number of case statements in a switch statement?Frank Farmer2009-04-28T00:40:00Z2009-04-28T00:40:00Z<p>You can probably do what you're asking with <a href="http://www.php.net/manual/en/function.token-get-all.php" rel="nofollow">token_get_all()</a>, but chances are that's not really the best solution to your <em>actual problem</em>.</p>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/798461#7984610Answer by Moutaz for In PHP can I get the total number of case statements in a switch statement?Moutaz2009-04-28T15:09:13Z2009-04-28T15:14:55Z<p>OK, let's say the URL looks like this:</p>
<p>somesite.com/ajax/getinfo.php?id=news</p>
<p>Then you can take $_GET[id] value and process it with a switch.</p>
<p>If I imagined your code correcly:</p>
<pre><code>$section=$_GET[id];
switch($section) {
case "1":
break;
.
.
.
default:
}
</code></pre>
<p>If that is not correct, so pardon my English. Please explain it a bit more, it stills a bit ambiguous.</p>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/798510#7985101Answer by cletus for In PHP can I get the total number of case statements in a switch statement?cletus2009-04-28T15:19:06Z2009-04-28T15:19:06Z<p>Actually you can do this reliably using <a href="http://au2.php.net/token%5Fget%5Fall" rel="nofollow">token_get_all()</a>. Here is an example of using that function to <a href="http://stackoverflow.com/questions/645862/regex-to-parse-define-contents-possible/645914#645914">find all the define() usages in a PHP file</a>. You will need to build a finite state machine (similar to the linked one) to look for switch statements and then the subordinate case statements. You may or may not want to make sure you deal with nested switch statements correctly.</p>
http://stackoverflow.com/questions/795417/in-php-can-i-get-the-total-number-of-case-statements-in-a-switch-statement/798527#7985270Answer by WebDevHobo for In PHP can I get the total number of case statements in a switch statement?WebDevHobo2009-04-28T15:23:43Z2009-04-28T15:23:43Z<p>Actually, this code will work:</p>
<pre><code>$i = 0;
switch(something)
{
case "item".$i++: //something
break;
case "item".$i++: //something
break;
default: //something
break;
}
</code></pre>