Posts by Lucas_SCCP • 29 points
4 posts
-
0
votes0
answers179
viewsQ: Error while returning JSON
I have a REST API that works correctly in my local environment but in production is cutting a portion of the return. {"status":"sucesso","data":{"return":"Inser\u00e7\u00e3o de lead efetuada com…
-
0
votes0
answers149
viewsQ: Codeigniter 3 rollers do not work in production
I have a problem with Codeigniter 3 In my local environment is working perfectly but when I go up to production the routes do not work But if I put index.php in the URL goes to the correct route.…
-
2
votes1
answer406
viewsA: Remove white space from csv
the only way I could get that blank space out was like this: $email = preg_replace('/[[:^print:]]/', '', $email); from what I’ve seen, that '/[[:^print:]]/' removes non-printable characters.…
-
0
votes1
answer406
viewsQ: Remove white space from csv
I’m having a problem when the user climbs up a .CSV. file If in some of the fields there is a blank space at the end I can’t remove it in any way. For example: "[email protected] " I’ve tried to use…