반응형
show_source — 별칭: highlight_file()
설명 ¶
이 함수는 다음 함수의 별칭입니다: highlight_file().
add a note add a note
User Contributed Notes 2 notes
show_source ()가 호스팅에서 작동하지 않으면 file_get_contents ()를 사용할 수 있습니다.
<?php
echo "<pre>";
echo htmlentities(file_get_contents(__FILE__));
echo "</pre>";
?>
또는 highlight_string ()과 결합하십시오.
<?php
echo "<pre>";
echo htmlentities(highlight_string(file_get_contents(__FILE__)));
echo "</pre>";
?>
반응형
'IT > php' 카테고리의 다른 글
php each — 배열에서 현재 키와 값 쌍을 반환하고 배열 커서를 전진 (0) | 2017.02.03 |
---|---|
php count — 배열의 모든 원소나, 객체의 프로퍼티 수를 셉니다 (0) | 2017.02.02 |
php php_check_syntax — 지정된 파일의 PHP 구문 확인 (및 실행) (0) | 2017.02.02 |
php time_nanosleep — 수초 및 나노 초 동안 지연 (0) | 2017.01.31 |
php sleep — 지연 실행 (0) | 2017.01.31 |