Changeset 12013


Ignore:
Timestamp:
2007/03/29 12:40:24 (17 years ago)
Author:
kakinaka
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/lib/slib.php

    r12012 r12013  
    534534// INT·¿¤ÎÀ°¿ô¥Á¥§¥Ã¥¯ 
    535535function sfIsRealInt($value) { 
    536     sfprintr((int) $value . " ---> " . is_int((int) $value)); 
    537     if($value != "" && strlen($value) <= INT_LEN && is_int($value)) { 
     536    $int = (int) $value; 
     537    if($int!= "" && strlen($int) <= INT_LEN && is_int($int)) { 
    538538        return true; 
    539539    } 
Note: See TracChangeset for help on using the changeset viewer.