⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apache.php

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PHP
字号:
<?php/*** Config.php example with Apache container* @author   Bertrand Mansion <bmansion@mamasam.com>* @package  Config*/// $Id: Apache.php,v 1.2 2003/03/22 17:44:12 mansion Exp $require_once('Config.php');$datasrc = '/path/to/httpd.conf';$conf = new Config();$content =& $conf->parseConfig($datasrc, 'apache');if (PEAR::isError($content)) {    die($content->getMessage());}// adding a new virtual-host$content->createBlank();$content->createComment('My virtual host');$content->createBlank();$vhost =& $content->createSection('VirtualHost', array('127.0.0.1:82'));$vhost->createDirective('DocumentRoot', '/usr/share/www');$vhost->createDirective('ServerName', 'www.mamasam.com');$location =& $vhost->createSection('Location', array('/admin'));$location->createDirective('AuthType', 'basic');$location->createDirective('Require', 'group admin');// adding some directives Listenif ($listen =& $content->getItem('directive', 'Listen')) {    $res =& $content->createDirective('Listen', '82', null, 'after', $listen);} else {    $listen =& $content->createDirective('Listen', '81', null, 'bottom');    if (PEAR::isError($listen)) {        die($listen->getMessage());    }    $content->createDirective('Listen', '82', null, 'after', $listen);}echo '<pre>'.htmlspecialchars($content->toString('apache')).'</pre>';// Writing the files/*if (!PEAR::isError($write = $conf->writeConfig('/tmp/httpd.conf', 'apache'))) {    echo 'done writing config<br>';} else {    die($write->getMessage());}if ($vhost->writeDatasrc('/tmp/vhost.conf', 'apache')) {    echo 'done writing vhost<br>';}*/?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -