我的控制器:存儲陣列數據庫列裏 - laravel 5
public function store()
{
$links = array();
$html = new \Htmldom('http://randomsite.org');
foreach($html->find('a') as $a)
{
$links[] = $a->href;
}
}
和我有領域的數據庫中的表稱爲結果:
id
name
url (i want to put the array here)
desc
我要的是多個記錄的鏈接數
序列化http://php.net/manual/en/function.serialize.php –