I want to combine a backslash between two variables when passing them in function arguments so that they form a file path.
turbo_function($variable1.\.$variable2, $otherargument);
I'm sure the backslash should be escaped. I tried wrapping it in quotation marks and double quotes.
How to compile backslash with variables successfully?
blarg source
share