PDA

View Full Version : ارور یک مرتبه در CRUD



computer-mag
پنج شنبه 18 اردیبهشت 1393, 23:34 عصر
سلام خسته نباشید سایت من درست کار می کرد ولی یهو ارور


Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /home/fphhcnic/public_html/application/core/MY_Model.php on line 11


بالا رو داد CRUD من هم همون مدل معروفی هست که استفاده میشه که در زیر کدشو میزارم لطف کنید کمکم کنید خیلی حیاتی هست


<?php

class MY_Model extends CI_Model {
const DB_TABLE = 'abstract';
const DB_TABLE_PK = 'abstract';

/**
* Create record.
*/
private function insert() {
$this->db->insert($this::DB_TABLE, $this);
$this->{$this::DB_TABLE_PK} = $this->db->insert_id();
}

/**
* Update record.
*/
private function update() {
$this->db->update($this::DB_TABLE, $this, $this::DB_TABLE_PK);
}

/**
* Populate from an array or standard class.
* @param mixed $row
*/
public function populate($row) {
foreach ($row as $key => $value) {
$this->$key = $value;
}
}

/**
* Load from the database.
* @param int $id
*/
public function load($id) {
$query = $this->db->get_where($this::DB_TABLE, array(
$this::DB_TABLE_PK => $id,
));
$this->populate($query->row());
}

/**
* Delete the current record.
*/
public function delete() {
$this->db->delete($this::DB_TABLE, array(
$this::DB_TABLE_PK => $this->{$this::DB_TABLE_PK},
));
unset($this->{$this::DB_TABLE_PK});
}

/**
* Save the record.
*/
public function save() {
if (isset($this->{$this::DB_TABLE_PK})) {
$this->update();
}
else {
$this->insert();
}
}

/**
* Get an array of Models with an optional limit, offset.
*
* @param int $limit Optional.
* @param int $offset Optional; if set, requires $limit.
* @return array Models populated by database, keyed by PK.
*/
public function get($limit = 0, $offset = 0) {
if ($limit) {
$query = $this->db->get($this::DB_TABLE, $limit, $offset);
}
else {
$query = $this->db->get($this::DB_TABLE);
}
$ret_val = array();
$class = get_class($this);
foreach ($query->result() as $row) {
$model = new $class;
$model->populate($row);
$ret_val[$row->{$this::DB_TABLE_PK}] = $model;
}
return $ret_val;
}
public function getBooksByName($name,$limit = 0, $offset = 0) {
if ($limit) {
$query = $this->db->like('name',$name)->get($this::DB_TABLE, $limit, $offset);
}
else {
$query = $this->db->like('name',$name)->get($this::DB_TABLE);
}
$ret_val = array();
$class = get_class($this);
foreach ($query->result() as $row) {
$model = new $class;
$model->populate($row);
$ret_val[$row->{$this::DB_TABLE_PK}] = $model;
}
return $ret_val;
}

public function getBooksByField($field,$value,$limit = 0, $offset = 0) {
if ($limit) {
$query = $this->db->like($field,$value, 'both')->get($this::DB_TABLE, $limit, $offset);
}
else {
$query = $this->db->like($field,$value, 'both')->get($this::DB_TABLE);
}
$ret_val = array();
$class = get_class($this);
foreach ($query->result() as $row) {
$model = new $class;
$model->populate($row);
$ret_val[$row->{$this::DB_TABLE_PK}] = $model;
}
return $ret_val;
}
}

computer-mag
پنج شنبه 18 اردیبهشت 1393, 23:46 عصر
سلام مدیر عزیز لطفا این تاپیک رو حذف کنید چون مشکل از هاست بود که ورژن PHP رو بدون اطلاع رسانی دانگرید کرده بود