>백엔드 개발 >PHP 튜토리얼 >判断指 指定值输出!

判断指 指定值输出!

WBOY
WBOY원래의
2016-06-23 13:51:32877검색

<?php$n=$_GET['che'];define("A", $n);if(A==star){echo '1';}else if(A==movie){echo '9';}else if(A==tv){echo '10';}else if(A==yue){echo '10';}else if(A==zongyi){echo '12';}else if(A==news){echo '15';}else if(A==yanchu){echo '13';}else if(A==fashion){echo '20';}else if(A==astro){echo '23';}在这里弄个  统一的值输出$b  这样 echo 里的值全弄到$b去  用B输出?>



回复讨论(解决方案)

$n=$_GET['che'];define("A", $n);$b = '';if(A=='star'){$b = '1';}else if(A=='movie'){$b = '9';}else if(A=='tv'){$b = '10';}else if(A=='yue'){$b = '10';}else if(A=='zongyi'){$b = '12';}else if(A=='news'){$b = '15';}else if(A=='yanchu'){$b = '13';}else if(A=='fashion'){$b = '20';}else if(A=='astro'){$b = '23';}echo $b;

$dict = array(  'star' => '1',  'movie' => '9',  'tv' => '10',  'yue' => '10',  'zongyi' => '12',  'news' => '15',  'yanchu' => '13',  'fashion' => '20',  'astro' => '23',);echo isset($dict[$_GET['che']]) ? $dict[$_GET['che']] : ''

$dict = array(  'star' => '1',  'movie' => '9',  'tv' => '10',  'yue' => '10',  'zongyi' => '12',  'news' => '15',  'yanchu' => '13',  'fashion' => '20',  'astro' => '23',);echo isset($dict[$_GET['che']]) ? $dict[$_GET['che']] : ''





大哥
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.