我在使用此(https://github.com/gsouf/google-url)库作为codeigniter库时遇到问题。
我从GitHub下载了该库并将其放在此文件夹中:
application/libraries/google-url-master
并创建此文件以将库设置为codeigniter库:
libraries/googleurl.php
<?phpif (!defined('BASEPATH')) exit('No direct script access allowed');class GoogleUrl {
private $g;
function __construct() {
require_once( APPPATH . 'third_party/google-url-master/autoload.php' );
$this->g = new \GoogleUrl;
}
然后使用以下行加载控制器:$this->load->library('googleurl');
但是当我加载库时它给了我这个错误:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65488 bytes) in \application\libraries\googleurl.php on line 11
看起来像是循环,但我无法弄清楚为什么会发生这种情况。
我想/希望安东尼的帮助会帮助我,但到目前为止没有成功: How to Integrate SEOStats with Codeigniter?
提前致谢,
马亭