Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Apache のモードがセーフモードかどうかをチェックする PHP 関数をコーディングする方法は?
<?php // Check for safe mode if( ini_get('safe_mode') ){ // Do it the safe mode way }else{ // Do it the regular way } ?>
http://www.php.net/manual/en/features.safe-mode.php#45263
Apache にはセーフモードがありません。PHP のことですか?
$safemode = ini_get('safe_mode');