17 lines
334 B
PHP
17 lines
334 B
PHP
<?php
|
|
ini_set('display_errors', 1);
|
|
ini_set('display_startup_errors', 1);
|
|
error_reporting(E_ALL);
|
|
|
|
class Bc extends MY_Controller
|
|
{
|
|
function index() {
|
|
echo "API";
|
|
}
|
|
function test() {
|
|
$this->broadcast("email-done");
|
|
echo "BC : email-done";
|
|
//echo file_get_contents('http://127.0.0.1:9090/broadcast/' . $prm);
|
|
}
|
|
}
|