05.04.2012, 19:19
I done reading ******' tutorial about strings and such where he said that new string[256] is wrong and [128] is better etc..
But when I tried to change this:
To this:
It gave me the next error:
error 047: array sizes do not match, or destination array is too small
But when I tried to change this:
PHP код:
new reason[256];
reason = strrest(cmdtext,idx);
PHP код:
new reason[128];
reason = strrest(cmdtext,idx);
error 047: array sizes do not match, or destination array is too small