Jump to content
  • 0
Petey Pablo

Help about warning script:implode

Question

What error is this? I dont know what script is this please anyone can help me fix. Thank you

[Warning]: script:implode: array length = 0

 

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

It means you are trying to concatenate the elements of an array into a string but the array is empty. You must make sure the array is non-empty before imploding it:

if (getarraysize(.@myArray$)) {
	.@string$ = implode(.@myArray$);
}

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.