Function "isnull" isn't working properly for me.
#2

Because "isnull" checks if a given string is NULL and it does so cleverly by checking the first element of string, or the second (if it exists).
If you want to check if a given character is NULL take your pick:
PHP код:
new ch '\0';
if (
ch == '\0')
if (
ch == EOS)
if (
ch == 0)
// etc. 
Reply


Messages In This Thread
Function "isnull" isn't working properly for me. - by Riwerry - 14.07.2015, 15:40
Re: Function "isnull" isn't working properly for me. - by Virtual1ty - 14.07.2015, 17:18

Forum Jump:


Users browsing this thread: 1 Guest(s)