"PHP crontab 보여주기"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
<source lang='php'>
<source lang='php'>
<?php
<?php
exec('sudo crontab -l 2>&1', $output);
exec('crontab -l 2>&1', $output);
echo '<xmp>';
echo '<xmp>';
print_r( $output );
print_r( $output );

2015년 2월 9일 (월) 14:06 판

PHP crontab 보여주기

1 테스트 1

<?php
exec('crontab -l 2>&1', $output);
echo '<xmp>';
print_r( $output );
echo '</xmp>';
Array
(
    [0] => sudo: sorry, you must have a tty to run sudo
)

2 같이 보기

3 참고 자료

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