Petey Pablo 0 Posted April 15, 2020 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 Quote Share this post Link to post Share on other sites
0 meko 170 Posted April 15, 2020 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$); } Quote Share this post Link to post Share on other sites
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