Hi,
I'm trying to modify an ldap attribute to contain a string that includes "\100". However, I cannot assign the data, which is a directory path like "c:\foldername\10024", to a variable or to an array element. The "\100" get's reinterpreted as "@" each time. I've tried variations with preg_replace, no luck. Here's some simple example code for what i'm trying:
$folder = "c:\foldername\10024";
echo $folder;
You'll see that the output will contain "c:\foldername@24" instead of the expected value.
Any help is appreciated.
Thanks!