You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
402 B
23 lines
402 B
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Wind
|
|
* Date: 2017/10/28
|
|
* Time: 11:45
|
|
*/
|
|
|
|
use KAuth\Tree\Tree;
|
|
|
|
include __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
|
var_dump(file_get_contents('php://input'));
|
|
die;
|
|
|
|
$tree = new Tree();
|
|
$tree->index();
|
|
|
|
var_dump(file_get_contents( __DIR__ . '/../private.key'));
|
|
|
|
$keyPathPerms = decoct(fileperms(__DIR__ . '/../private.key') & 0777);
|
|
var_dump($keyPathPerms); |