복붙노트

[WORDPRESS] 구문 분석 오류 : 구문 오류 C에서, 예상치 못한 '사용'(T_USE) : \ WAMP \ www가 \ 계기판 \ WP-내용 \ 테마 \ 계기판 \ page.php 라인에 [중복]

WORDPRESS

구문 분석 오류 : 구문 오류 C에서, 예상치 못한 '사용'(T_USE) : \ WAMP \ www가 \ 계기판 \ WP-내용 \ 테마 \ 계기판 \ page.php 라인에 [중복]

해결법


  1. 1.당신은 사용의 사용에 문제가 :)

    당신은 사용의 사용에 문제가 :)

    이 코드를보십시오 :

    use Dompdf\Dompdf;
    
    ob_start();  
    require_once '\dompdf\autoload.inc.php';
    
    // instantiate and use the dompdf class
    $dompdf = new DOMPDF();
    $html = "
    print_r($_POST);
    ";
    
    $dompdf->loadHtml($html);
    $dompdf->setPaper('A4', 'landscape');
    $dompdf->render();
    $pdf = $dompdf->output();
    file_put_contents("page.pdf", $pdf);
    
    ?>  
    <a href="./page.pdf" download="page.pdf">Download the pdf</a>
       <?php
    exit;
    ?>
    
  2. from https://stackoverflow.com/questions/36130367/parse-error-syntax-error-unexpected-use-t-use-in-c-wamp-www-calculater-wp by cc-by-sa and MIT license