$str = mb_ereg_replace_callback(
'[' . implode('', array_keys($trans)) . ']',
function($char) use ($trans) {
return (rand(0, 1) ? $trans[$char[0]] : $char[0]);
},
$str
);
output
Returns the PDF as a string. The file will open a download dialog by default. The options parameter controls the output.
stream
Streams the PDF to the client. The file will open a download dialog by default. The options parameter controls the output.