PHP crontab 보여주기

Jmnote (토론 | 기여)님의 2015년 2월 9일 (월) 14:08 판
PHP crontab 보여주기

1 방법 1: apache계정의 크론탭

<?php
exec('crontab -l 2>&1', $output);
echo '<xmp>';
print_r( $output );
echo '</xmp>';
Array
(
    [0] => no crontab for apache
)

2 방법 2: root계정의 크론탭

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}