紅豆檢查屬性給定值來設定權類型列,我會建議你每次都凍結選擇去工作,但是,當你需要改變一些東西,你只需打開它。我的意思是,剛打開的時候,你真的需要執行你表中的一些變化,前凍結:
// the false param will disable db changes
R::setup('dns', 'user', 'pass', false);changes (freeze option)
//...
//... let's imagine you have some code here
//...
R::freeze(false);
$participant = R::dispense('participants');
$participant->number = 'intert any string'; // need to set field to string type
R::store($participant);
R::freeze(true);
$participant->number = '99.99';
R::store($participant);
我知道這是不是有史以來最好的東西,但你必須把它當您需要改變數據庫結構。本質上,在生產環境中,您應該始終關閉它
現在使用number_format($ participant-> number,0,'','')作爲解決方案 –