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

Prints to the PHP standard output, without a newline.

Acts exactly the same as the built-in print macro.

§Panics

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