Jump to content

[SOLVED] $string -> numeric


Ken2k7

Recommended Posts

phpSensei - Ken wants to check if their is a number IN the string, not if the entire variable is numeric or not. Thats why is_numeric won't work for the situation.

 

The code probably ended up being something like this:

 

<?php

$str = "dsffdaf";
$str = str_split($str);

foreach ($str as $char){
   if (is_numeric($char)){
      $nums = TRUE;
      break;
   }
}

if (isset($nums)){
   echo "The string contained a number.";
} else {
   echo "The string has NO numbers.";
}

?>

Link to comment
https://forums.phpfreaks.com/topic/67481-solved-string-numeric/#findComment-338840
Share on other sites

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.