Backslash and forward slash issue metadata create time

This is comman issue when we put forward slash then create file time backslash automatically add like this (/). This iss not good for url so we need to fix this. Here I am shring code "How can fix backslash and forwaord splash.

solution: use JSON_UNESCAPED_SLASHES in json encode example: fwrite($fp, json_encode($json_data, JSON_UNESCAPED_SLASHES));

Last updated