Jump to content

If it has alphabetic


egturnkey

Recommended Posts

Hello friends,

 

If we have the following

 

$manal = "hate1";

 

i wanna say if $manal has alphabetic letters ( not only digits ) then show something else then show anything

 

 

if xxxxxxxx {
  echo 'something';
} else {
echo 'anything';
}

 

 

xxxxxx is the part i can't write, it want it means if $manal has letter and not digits

 

hope you got what i mean,

 

thanks so much

Link to comment
https://forums.phpfreaks.com/topic/195559-if-it-has-alphabetic/
Share on other sites

Is this what your looking for?

<?php
$strings = array('AbCd1zyZ9', 'foo!#$bar');
foreach ($strings as $testcase) {
    if (ctype_alnum($testcase)) {
        echo "The string $testcase consists of all letters or digits.\n";
    } else {
        echo "The string $testcase does not consist of all letters or digits.\n";
    }
}
?>

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.