- 🇮🇳India ayush.pandey
Hi @jasonluttrell, The error message "Deprecated function: implode(): Passing glue string after array is deprecated", is coming from the Google API PHP client library itself. To fix this issue, you just need to modify the Google API client library to use the correct order of parameters in the implode() function call.
Note - A patch might won't work as the library might vary according to your local system.
Example - implode($separator, $array);
Change it to. - implode($array, $separator); - Assigned to abhishek_virasat
- Issue was unassigned.