macro_rules! php_println {
    () => { ... };
    ($fmt: tt) => { ... };
    ($fmt: tt, $($arg: tt) *) => { ... };
}
Expand description

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.

§Panics

Panics if the generated string could not be converted to a CString due to NUL characters.