Dize içinde bir değerin gerçek türünü almak nasıl?

2 Cevap php

I was searching here on StackOverflow about converting string to the real value and i didn't found. I need a function like "gettype" that does something like the result above, but i can't do it all :s

gettypefromstring("1.234"); //returns (doble)1,234;
gettypefromstring("1234"); //returns (int)1234;
gettypefromstring("a"); //returns (char)a;
gettypefromstring("true"); //returns (bool)true;
gettypefromstring("khtdf"); //returns (string)"khtdf";

Tüm :) teşekkürler

2 Cevap

Svisstack 1 +! ;)

İşte birisi istiyorsanız fonksiyonudur:

function gettype_fromstring($string){
    //  (c) José Moreira - Microdual (www.microdual.com)
    return gettype(getcorrectvariable($string));
}
function getcorrectvariable($string){
    //  (c) José Moreira - Microdual (www.microdual.com)
    //      With the help of Svisstack (http://stackoverflow.com/users/283564/svisstack)

    /* FUNCTION FLOW */
    // *1. Remove unused spaces
    // *2. Check if it is empty, if yes, return blank string
    // *3. Check if it is numeric
    // *4. If numeric, this may be a integer or double, must compare this values.
    // *5. If string, try parse to bool.
    // *6. If not, this is string.

    $string=trim($string);
    if(empty($string)) return "";
    if(!preg_match("/[^0-9.]+/",$string)){
        if(preg_match("/[.]+/",$string)){
            return (double)$string;
        }else{
            return (int)$string;
        }
    }
    if($string=="true") return true;
    if($string=="false") return false;
    return (string)$string;
}

Ben numarası X Y. birden fazla olup olmadığını bilmek için bu fonksiyonu kullanılır

Örnek:

$number=6;
$multipleof=2;
if(gettype($number/$multipleof)=="integer") echo "The number ".$number." is multiple of ".$multipleoff.".";

Ama döner çalışması çerçeve daima giriş dizeleri olarak vars.

Sen belirtilen sırayla dönüştürmek için denemek gerekir:

  1. Kontrol çift
  2. Çift, bu bir tamsayı olabilir, dönüştürmek ve bu değerleri karşılaştırmak gerekir.
  3. Değilse uzunluğu == 1 ise, bu karakter.
  4. Eğer değilse, bu dize.
  5. Dize ise, bool ayrıştırmak deneyin.

Eğer dize Writed ondalık bir dize türü alabilirsiniz çünkü gettype kullanamazsınız.