mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
18 lines
443 B
PHP
18 lines
443 B
PHP
<?php
|
|
|
|
require('../../includes/csrf.php');
|
|
include_once('../../includes/config.php');
|
|
|
|
exec('cat '. RASPI_HOSTAPD_CONFIG, $hostapdconfig);
|
|
$arrConfig = array();
|
|
|
|
foreach ($hostapdconfig as $hostapdconfigline) {
|
|
if (strlen($hostapdconfigline) === 0) {
|
|
continue;
|
|
}
|
|
$arrLine = explode("=", $hostapdconfigline) ;
|
|
$arrConfig[$arrLine[0]]=$arrLine[1];
|
|
};
|
|
$channel = intval($arrConfig['channel']);
|
|
echo json_encode($channel);
|