About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
mugyu
3/31/2014 - 1:15 AM
share
Share
add_circle_outline
Save
PHPでコマンドラインから起動したか判断する
PHPでコマンドラインから起動したか判断する
is_cli.php
content_copy
file_download
if (php_sapi_name() === 'cli' || defined('STDIN')) { set_time_limit(0); }
clear