A beginner question on passthru() function in PHP
- by Robert
Hi all,
I've used the following code to do an XSLT translation in PHP and save the result SVG file into a sub folder:
$command = $java . $saxon . $target2 . ' ' . $xsl2.' '.$param;
ob_start();
passthru($command, $result);
$content_grabbed=ob_get_contents();
ob_end_clean();
$info = pathinfo($_FILES['file']['name']);
$file_name=…