DOMPDF ( WEB 페이지 -> PDF 파일 ) 프로그램 추가 for PHP
PHP CI – index.php 않보이게 할때 mod_rewrite 설치
mod_rewrite 설치 되어 있지 않다면 ( 우분투 리눅스 실행 방법 아래 ) #> sudo a2enmod rewrite #> service apache2 restart 확인은 아래와 […]
PHP-Symfony4 리눅스(linux) Ubunto 에 설치하기시 Error
아래의 에러메세지 발생 #> composer create-project symfony/skeleton my_project Installing symfony/website-skeleton (v3.4.17.3) Failed to download symfony/website-skeleton from dist: The […]
PHP-Symfony4 The Twig 를 통한 화면 출력 – 3
templates\temppage\show.html.twig 수정 templates\temppage\base.html.twig 새로작성 브라우져에서 실행 ( http://localhost:8000/shows/오늘의-영어-20181026 ) 소스 : Twig – Template Inheritance & Blocks
PHP-Symfony4 The Twig 를 통한 화면 출력 – 2
src\Controller\Example004Controller.php 수정 templates\temppage\show.html.twig 수정 #> php -S 127.0.0.1:8000 -t public 브라우져 화면에 실행 소스 : 위 내용의 소스
PHP-Symfony4 The Twig 를 통한 화면 출력 – 1
해당 폴더에서 아래와 같이 실행 #> composer create-project symfony/skeleton the_example004 #> cd the_example004 #> composer require annotations #> composer require […]
PHP-Symfony4 Fancy Wildcard Routes & parameter 를 통한 화면 출력
composer create-project symfony/skeleton the_example003 실행 composer require annotations 실행 Example003Controller.php 에 아래 내용과 같이 작성 브라우져에서 아래와 같이 실행 소스 […]