我正在研究一个wordpress主题,它以php形式提供此代码。
$other_fields = array(
__( 'Budget', APP_TD ) => sprintf( '%s (%s)', appthemes_get_price( $project->_hrb_budget_price, $project->_hrb_budget_currency ), $budget_text ),
__( 'Location', APP_TD ) => ( 'remote' != $project->_hrb_location_type ? $project->_hrb_location : __( 'Remote', APP_TD ) ),
__( 'Files', APP_TD ) => $files,
);
如果我在预算框中输入0.01,则在前端会出现错误,上面写着“请插入有效的预算价格”。
该框不允许我以0开始价格
我想在比特币中允许比特币价格,所以希望用户能够输入,例如0.1。
到底有没有?
谢谢!