18 lines
442 B
PHP
18 lines
442 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class WordModel extends Model
|
|
{
|
|
protected $table = 'ew_word';
|
|
protected $primaryKey = 'pid';
|
|
protected $allowedFields = ['pid','level','word','phonetic_kor','phonetic_symbol','mp3_file','meanings','examplesentence','partofspeech']; // 적절한 필드를 추가하세요.
|
|
|
|
public function getWord($pid = 1)
|
|
{
|
|
return $this->where('pid', $pid)->first();
|
|
}
|
|
}
|