20.04.2017, 07:23
sscanf warning: 'z' is deprecated, consider using 'S' instead.
You are using 'z' somewhere in the script instead of using the specifier 's'.
Example:
Use 'S' instead of 'z'.
sscanf warning: Strings without a length are deprecated, please add a destination size.
Example:
Should be
This can even cause your server to crash.
You are using 'z' somewhere in the script instead of using the specifier 's'.
Example:
PHP код:
if(sscanf(params, "z", ...))
sscanf warning: Strings without a length are deprecated, please add a destination size.
Example:
PHP код:
new eg[5];
if(sscanf(params, "s", eg))
PHP код:
new eg[5];
if(sscanf(params, "s[5]", eg))