12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- class Api_Default extends PhalApi_Api {
- public function getRules() {
- return array(
- );
- }
-
-
- private function index() {
-
- }
- private function test() {
- $stream=time();
- $push=PrivateKeyA('rtmp',$stream,1);
- $pull=PrivateKeyA('rtmp',$stream,0);
- echo $push;
- echo '<br>';
- echo $pull;
- exit;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
- }
|