我有一个简单的PHP项目,其中有xmlrpc.php
- 文件在php语言库中。
当我使用new xmlrpc_client($this->auth_service_url);
执行文件时,显示
未找到类'xmlrpc_client'
有人可以帮助我吗?
答案 0 :(得分:0)
试试这个 new \ xmlrpc_client($ this-> auth_service_url); 或这个 new / xmlrpc_client($ this-> auth_service_url);
答案 1 :(得分:0)
答案 2 :(得分:0)
似乎xmlrpc_client未正确安装在您的php配置中,或者在您运行命令的范围内不可用。尝试创建/检查您的php.ini或创建一个info.php文件,看看为xmlrpc加载了哪些库。如果您的项目目录中有此xmlrpc文件,您还可以确保将其包含在PHP脚本中。在我的PHP脚本中,我这样做。
<?php
include "libs/odoorpc.php";
include("libs/xmlrpcs.inc");
其中odoorpc是我用于php的odoo xmlrpc类。 xmlrpcs是一个可用于php的通用xmlrpc库。您必须使用适合您情况的文件名替换。