开发者

PHP making input from web form case insensitive?

So I have some code here that takes user input from a standard web form:

if (get_magic_quotes_gpc()) {
    $searchsport = stripslashes($_POST['sport']);
    $sportarray = array(
        "Football" => "Fb01",
        "Cricket" => "开发者_JAVA技巧ck32",
        "Tennis" => "Tn43",
    );
    if (isset($sportarray[$searchsport])) {
        header("Location: " . $sportarray[$searchsport] . ".html");
    die;
}

How would I go about modifying this (I think the word is parsing?) to make it case insensitive? For example, I type in "fOoTbAlL" and PHP will direct me to Fb01.html normally.

Note that the code is just an example. The string entered by the user can contain more than one word, say "Crazy aWesOme HarpOOn-Fishing", and it would still work if the array element "Crazy Awesome Harpoon-Fishing" (take note of the capital F before the dash).


You can modify your code like this:

// Searches for values in case-insensitive manner
function in_arrayi($needle, $haystack) {
    return in_array(strtolower($needle), array_map('strtolower', $haystack));
}

$searchsport = $_POST['sport'];
$sportarray = array(
    "Football" => "Fb01",
    "Cricket" => "ck32",
    "Tennis" => "Tn43",
);

if(in_arrayi($searchsport, $sportarray)){
    header("Location: " . $sportarray[$searchsport] . ".html");
    die;
}


The easiest way is to use strtolower to make everything lowercase to make your comparison.


I would use a string function, strtolower().


$searchsport = strtolower($_POST['sport']);
$sportarray = array(
    "football" => "Fb01",
    "cricket" => "ck32",
    "tennis" => "Tn43",
);
if (isset($sportarray[$searchsport])){
    header("Location: " . $sportarray[$searchsport] . ".html");
    die;
}

In this way the search string and the array keys are both lowercase and you can do a case insensitive comparison.

If you want to preserve the case of the $sportarray keys you can do:

$searchsport = ucfirst(strtolower($_POST['sport']));
$sportarray = array(
    "Football" => "Fb01",
    "Cricket" => "ck32",
    "Tennis" => "Tn43",
);
if (isset($sportarray[$searchsport])){
    header("Location: " . $sportarray[$searchsport] . ".html");
    die;
}


<?php
$searchsport = $_POST['sport'];
$sportarray = array(
"Football" => "Fb01",
"Cricket" => "ck32",
"Tennis" => "Tn43",
);
if(isset($sportarray[ucfirst(strtolower($searchsport]))])){
    header("Location: ".$sportarray[$searchsport].".html");
    die;
}
?>

notice ucfirst(strtolower($searchsport]))?

LE: added ucfirst

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜