简体   繁体   English

PHP 致命错误:无法重新声明 Google Dialogflow PHP API 问题

[英]PHP Fatal error: Cannot redeclare issue with Google Dialogflow PHP API

Having an issue with Google Dialogflow. Google Dialogflow 有问题。 I keep getting an error: PHP Fatal error: Cannot redeclare Google\\Cloud\\Samples\\Dialogflow\\detect_intent_texts() (previously declared in /var/www/fixnode-website/php-docs-samples/dialogflow/src/detect_intent_texts.php:18) in /var/www/fixnode-website/php-docs-samples/dialogflow/src/detect_intent_texts.php on line 74我不断收到错误: PHP Fatal error: Cannot redeclare Google\\Cloud\\Samples\\Dialogflow\\detect_intent_texts() (previously declared in /var/www/fixnode-website/php-docs-samples/dialogflow/src/detect_intent_texts.php:18) in /var/www/fixnode-website/php-docs-samples/dialogflow/src/detect_intent_texts.php on line 74

Any chance someone can help?有人可以帮忙吗? For context, I'm using a third party SMS API so I can build an SMS chatbot.就上下文而言,我使用的是第三方 SMS API,因此我可以构建一个 SMS 聊天机器人。 I've gotten the rest of the code all cleaned up but every test I do comes up with error's.我已经清理了其余的代码,但是我所做的每个测试都出现了错误。 Not sure why I cannot redeclare the library here.不知道为什么我不能在这里重新声明图书馆。

<?php
// [START dialogflow_detect_intent_text]

use Google\Cloud\Dialogflow\V2\SessionsClient;
use Google\Cloud\Dialogflow\V2\TextInput;
use Google\Cloud\Dialogflow\V2\QueryInput;
require_once '/var/www/fixnode-website/zang-php/connectors/Sms.php';
require_once __DIR__ . '/../vendor/autoload.php';
/**
 * Returns the result of detect intent with texts as inputs.
 * Using the same `session_id` between requests allows continuation
 * of the conversation.
 */

$SMS = $Body = $_POST['Body'];

function detect_intent_texts($projectId, $texts, $sessionId, $languageCode = 'en-US')
{
    // new session
    $sessionsClient = new SessionsClient();
    $session = $sessionsClient->sessionName($projectId, $sessionId ?: uniqid());
    printf('Session path: %s' . PHP_EOL, $session);

    // query for each string in array
    foreach ($texts as $text) {
        // create text input
        $textInput = new TextInput();
        $textInput->setText($text);
        $textInput->setLanguageCode($languageCode);

        // create query input
        $queryInput = new QueryInput();
        $queryInput->setText($textInput);

        // get response and relevant info
        $response = $sessionsClient->detectIntent($session, $queryInput);
        $queryResult = $response->getQueryResult();
        $queryText = $queryResult->getQueryText();
        $intent = $queryResult->getIntent();
        $displayName = $intent->getDisplayName();
        $confidence = $queryResult->getIntentDetectionConfidence();
        $fulfilmentText = $queryResult->getFulfillmentText();

        // output relevant info
        print(PHP_EOL);
        try {
            $sms = Sms::getInstance();
            $sms -> setOptions(array(
            "account_sid"   => $_ENV["ACCOUNT_SID"],
            "auth_token"    => $_ENV["AUTH_TOKEN"],
            ));
            $sentSms = $sms -> sendSms(array(
            'From'          => '647799XXXX',
            'To'            => '416830XXXX',
            'Body'          => $fulfilmentText,
            'AllowMultiple' => "True"
            ));

            echo "<pre>";
            print_r($sentSms->getResponse());
            echo "</pre>";

            }
            catch (ZangException $e){
               echo "<pre>";
               print_r( "Exception message: " . $e -> getMessage() . "<br>");
               print_r( "Exception code: " . $e -> getCode() . "<br>");
               print_r(  $e -> getTrace() );
               echo "</pre>";
            }
   }
   $sessionClient->close();
}

detect_intent_texts("boxwood-ray-226216", "Hi", "12345678");

?>

The error message packs helpful information.错误消息包含有用的信息。

The function detect_intent_texts is already declared in Google\\Cloud\\Samples\\Dialogflow namespace in /var/www/fixnode-website/php-docs-samples/dialogflow/src/detect_intent_texts.php函数detect_intent_texts已经在/var/www/fixnode-website/php-docs-samples/dialogflow/src/detect_intent_texts.php Google\\Cloud\\Samples\\Dialogflow命名空间中声明

In your script you redeclare detect_intent_texts in Google\\Cloud\\Samples\\Dialogflow namespace.在您的脚本中,您在Google\\Cloud\\Samples\\Dialogflow命名空间中重新声明detect_intent_texts You shouldn't declare functions in namespaces declared in vendored packages such as this one.你不应该在像这个这样的供应商包中声明的命名空间中声明函数。

You should declare a different namespace in your script.您应该在脚本中 声明一个不同的命名空间

If your project is not vendored you could remove the namespace declaration.如果您的项目未供应商,您可以删除命名空间声明。

<?php
// [START dialogflow_detect_intent_text]
require_once __DIR__ . '/../vendor/autoload.php';
require_once '/var/www/fixnode-website/zang-php/connectors/Sms.php';

use Google\Cloud\Dialogflow\V2\SessionsClient;
use Google\Cloud\Dialogflow\V2\TextInput;
use Google\Cloud\Dialogflow\V2\QueryInput;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM