1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>PHP의 설정을 알아보고 싶을 때</title> <link href="style.css" rel="stylesheet"> </head> <body> <div> <?php echo "<p>ini_get() 함수로 include_path의 설정 값 가져오기:</p>"; echo "<p>" . ini_get('include_path') . "</p>"; echo "<p>ini_get_all() 함수의 반환 값:</p>"; echo "<pre>"; print_r(ini_get_all()); echo "</pre>"; ?> </div> </body> </html> |
댓글 없음:
댓글 쓰기