PHP Function - SAPI_WINDOWS_CP_SET
Article about php function sapi_windows_cp_set
SAPI_WINDOWS_CP_SET - Set the codepage of the current process. Returns TRUE if successful, FALSE otherwise.
Tip: Arguments in a PHP function are pushed onto a stack by the engine when the function is called. You can browse the stack at runtime and see all of the arguments that have been passed to your function from the caller.
Note that in PHP, a return statement with no arguments (or parentheses) will trigger an E_COMPILE_ERROR. This is to help prevent accidental bugs caused by un-nested function calls. This is a very bad practice and should be avoided at all costs. Use the php builtin functions or external tools instead for such cases. It is also recommended that you do not pass any unused arguments to functions.