Невозможно вызвать три функции вместе в моем сценарии php? - PullRequest
0 голосов
/ 27 сентября 2019

Привет, я печатаю данные через функцию, но теперь мне нужно больше данных из другого ресурса, для которого мне нужно вызвать еще три функции, как я могу вызвать их все вместе.

Вот мой код дляВызов одной функции, теперь как я могу реализовать ее так, чтобы все три функции вызывались вместе -

    <?php

// get database connection
include_once '../database.php';
// instantiate user object
include_once 'service.php';
// header('Content-type: text/javascript');
$database = new Database();
$db = $database->getConnection();

$user = new User($db);
header('Content-Type: text/csv');
header('Content-Disposition: attachment; filename="sample.xls"');

$_POST = json_decode(file_get_contents('php://input'),true);

// set user property values
$user->clientid = $_POST['clientid'];
// create the user
if($user->getOthersKeywords() ){  //calling getOthersKeywords() function here i need to call three function here too how?
    $GetData=$user->GetData;      

}


else{
    $GetData=array(
        "Error" => "Error",
        "message" => "No Record Found"
    );
}
// print_r(json_encode($GetData));
...