こんにちは私は標準ライブラリを含めようとすると問題が発生します。私はすでにZendフォルダーをこのパスにインポートしています
/project
/library
/
これが私のスクリプトです:
require_once 'Zend/Db/Table/Abstract.php';
require_once APPLICATION_PATH.'/models/ContentNode.php';
class Application_Model_Page extends Zend_Db_Table_Abstract
{
public function createPage ($name, $namespace, $parentId = 0)
{
//create the new page
$row = $this->createRow();
$row->name = $name;
$row->namespace = $namespace;
$row->parent_id = $parentId;
$row->date_created = time();
$row->save();
// now fetch the id of the row you just created and return it
$id = $this->_db->lastInsertId();
return $id;
}
これが私が受け取っているエラーメッセージです
警告:include_once(Zend \ Db \ Table \ Abstarct.php)[function.include-once]:ストリームを開くことができませんでした:C:\ Zend \ Apache2 \ htdocs \ zendproject \ library \ Zend\Loaderにそのようなファイルまたはディレクトリはありません。 146行目のphp