使用 PHP 和 Google Docs API 将表单数据保存到 Google 电子表格时出错
通过 google doc api 使用 php 将我的数据保存在 google 电子表格中时,出现以下错误。如何在php中包含所需的库文件?
警告:require_once(Zend/Loader.php) [function.require-once]:无法打开流:/opt/lampp/htdocs/test/ZendGdata-1.8.1/demos/Zend/Gdata/ 中没有此类文件或目录Spreadsheet-ClientLogin.php 第 25 行
致命错误:require_once() [function.require]:无法在 /opt/ 中打开所需的 'Zend/Loader.php' (include_path='.:/opt/lampp/lib/php') lampp/htdocs/test/ZendGdata-1.8.1/demos/Zend/Gdata/Spreadsheet-ClientLogin.php 第 25 行
While saving my data in google spreadsheet using php via google doc api, i got the following error. How to include the required library files in php?
Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in /opt/lampp/htdocs/test/ZendGdata-1.8.1/demos/Zend/Gdata/Spreadsheet-ClientLogin.php on line 25
Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader.php' (include_path='.:/opt/lampp/lib/php') in /opt/lampp/htdocs/test/ZendGdata-1.8.1/demos/Zend/Gdata/Spreadsheet-ClientLogin.php on line 25
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 php localhost 中包含文件的命令是
或
上面我包含了 php 文件,但未显示。
command to include file in php localhost is
or
above I included the php file but it is not shown.