码迷,mamicode.com
首页 > Web开发 > 详细

Apache24配置文件生成工具

时间:2017-06-16 10:04:16      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:.com   ram   return   not   str   exists   contents   file   load   

Apache24下载地址:

http://www.apachelounge.com/download/

http://www.apachelounge.com/download/VC14/binaries/httpd-2.4.25-win64-VC14.zip

 

<?php
define(‘SERVER_ROOT‘,‘c:/Apache24‘);
define(‘HTDOCS‘,‘htdocs‘);

function Apache24_set_htdocs( $param)
{
    $templet_filename       = ‘‘;
    $file_contents  = ‘‘;
    $search_content = ‘c:/Apache24‘;
    $new_filename = ‘‘;
    $ServerRoot = SERVER_ROOT ;
    $htdocs = ‘htdocs‘;
    
    if( isset($param) && is_array($param) )
    {
        if( count($param) < 3 )
        {
            return false;
        }
        
        $templet_filename = $param[1];
        $ServerRoot       = $param[2];
        if( count($param) == 4 )
        {
            $htdocs = $htdocs."/".$param[3];
        }
    }
    
    if( !file_exists($ServerRoot) )
    {
        echo "ServerRoot not exist!";
        return false;
    }
    
    if( $templet_filename == ‘‘ )
    {
        return false;
    }
    if( !is_string($templet_filename) )
    {
        return false;
    }
    if( !file_exists($templet_filename ) )
    {
        return false;
    }
    
    
    
    $ServerRoot = str_replace( "\\" , "/" ,$ServerRoot);
    $ServerRootLength = strlen($ServerRoot);
    if( $ServerRoot{$ServerRootLength-1} == "/" )
    {
      $ServerRoot = substr($ServerRoot,0,$ServerRootLength - 1);
    }
    
    
    $htdocs = str_replace( "\\" , "/" ,$htdocs);
    $htdocsLength = strlen($htdocs);
    if( $htdocs{$htdocsLength-1} == "/" )
    {
      $htdocs = substr($htdocs,0,$htdocsLength - 1);
    }
    
    echo "ServerRoot            :".$ServerRoot."\n";
    echo "Apache24 conf templete:".$templet_filename."\n";
    echo "htdocs                :".$htdocs."\n";
    
    $new_filename = $templet_filename."-new";
    $file_contents = file_get_contents($templet_filename);
    
    $file_contents = str_replace( $search_content , $ServerRoot ,$file_contents);
    $file_contents = str_replace( HTDOCS , $htdocs ,$file_contents);
    
    file_put_contents( $new_filename , $file_contents);
    
    echo "generate file ".$new_filename." ok!";
    
    return true;
}


Apache24_set_htdocs($argv);
?>

 

Apache24配置文件生成工具

标签:.com   ram   return   not   str   exists   contents   file   load   

原文地址:http://www.cnblogs.com/tinyos/p/7021311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!