22 lines
693 B
PHP
22 lines
693 B
PHP
<?php
|
|
set_time_limit(-1);
|
|
use Barryvdh\DomPDF\Facade\Pdf;
|
|
$path = "storage/documents/Document%20Templates/Welder%20ID/test/";
|
|
$outputPath = "test/test";
|
|
$html = file_get_contents(url("$path/sheet001.htm"));
|
|
$html = str_replace("window.location.replace", "//window.location.replace", $html);
|
|
$html = str_replace('src=', 'src=https://devqms.stellarcons.com/' . $path, $html);
|
|
//$html = str_replace('href=', 'href=https://devqms.stellarcons.com/' . $path, $html);
|
|
//$html = str_replace('href="', 'href="https://devqms.stellarcons.com/' . $path, $html);
|
|
$html = pdf_html_content2($html);
|
|
|
|
html_create($outputPath, $html);
|
|
|
|
yonlendir(url("storage/documents/$outputPath"));
|
|
echo $html;
|
|
|
|
|
|
|
|
?>
|
|
|