本文目录一览:
如何获得bluehost的默认php.ini文件
bluehost的cPanel中可以生成一个默认的php.ini的配置文件,如果需要作一些特殊的设置,可以下载这个文件后在本地编辑该文件上传到相应目录即可,所作的编辑是立即生效的。
php读取ini配置文件属性
ini的内容格式如下,请根据自己的INI,格式修改下段程序.
autostart = false
font_size = 12
font_color = red
===================
function get_ini_file($file_name = "demo.ini"){
$str=file_get_contents($file_name);//读取ini文件存到一个字符串中.
$ini_list = explode("\r\n",$str);//按换行拆开,放到数组中.
$ini_items = array();
foreach($ini_list as $item){
$one_item = explode("=",$item);
if(isset($one_item[0])isset($one_item[1])) $ini_items[trim($one_item[0])] = trim($one_item[1]); //存成key=value的形式.
}
return $ini_items;
}
function get_ini_item($ini_items = null,$item_name = ''){//获得INI条目的值.
if(empty($ini_items)) return "";
else return $ini_items[$item_name];
}
$ini_items = get_ini_file("demo.ini");
echo get_ini_item($ini_items,'font_size'); //输出获得的值.
如何控制新生成的文件的属性?通过php.ini参数设置。
用umask屏蔽字来控制,php进程的屏蔽字由apache/nginx的控制,启动apache/nginx的时候,加入umask为000就行了。但值得注意的是 不管屏蔽码是多少:·新创建的文件默认不具有可执行允可权限。·新创建的目录默认具有可执行允可权限。