LOULOU Posted October 3, 2005 Share Posted October 3, 2005 Which one can help me to converse this instruction in autoit instruction # formate $data avec la sémantique RFC 2045 $new_string = chunk_split(base64_encode($data)); ?> Thanks in advance Link to comment Share on other sites More sharing options...
seandisanti Posted October 3, 2005 Share Posted October 3, 2005 Which one can help me to converse this instruction in autoit instruction# formate $data avec la sémantique RFC 2045$new_string = chunk_split(base64_encode($data));?>Thanks in advancewell if you have a function named base64_encode that performs the same as the one in the example and a function named chunk_split that met the same criteria, you'd just have to remove the semicolon at the end for it to be correct syntax wise. as far as converting those two functions, we'd need some info on the instructions in each of those functiosn to convert that.... Link to comment Share on other sites More sharing options...
LOULOU Posted October 3, 2005 Author Share Posted October 3, 2005 Which one can help me to converse this instruction in autoit instruction# formate $data avec la sémantique RFC 2045$new_string = chunk_split(base64_encode($data));?>Thanks in advancechunk_split --> Split a string into smaller chunksbase64_encode = encode a string in Base64 Link to comment Share on other sites More sharing options...
seandisanti Posted October 3, 2005 Share Posted October 3, 2005 chunk_split --> Split a string into smaller chunksbase64_encode = encode a string in Base64ok, then you could replace chunk_split with StringSplit() kind of figured on that one). as far as the base 64 encode, i'd need the algo to convert to autoit, let me do a little research for you. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now