macro_rules! php_println { () => { ... }; ($fmt: tt) => { ... }; ($fmt: tt, $($arg: tt) *) => { ... }; }
Prints to the PHP standard output, with a newline.
The newline is only a newline character regardless of platform (no carriage return).
Acts exactly the same as the built-in println macro.
println
Panics if the generated string could not be converted to a CString due to NUL characters.
CString
NUL