[DllImport("php_ctype.dll",EntryPoint="ctype_alnum",ExactSpelling=false,CallingConvention=CallingConvention.Cdecl)]
        public static extern bool ctype_alnum(string text);
        public static object ctype_alnum(object o)
        {
            Core.DeReference(ref o);
            bool result = ctype_alnum(Convert.ToString(o));
            return result;
           
        }
someone know what could happend?
thanks for all