1 頁 (共 1 頁)

[問題] 安裝了主題類型及虛擬貨幣,想要特定主題不要加錢,可

發表於 : 2005-11-28 15:51
chenghwa
問題外掛:主題類型及虛擬貨幣\r
參考連結:
使用版本:phpBB 2.0.18
網站位置:www.bestfood.shorturl.com
狀況描述:安裝了主題類型及虛擬貨幣,想要特定主題不要加錢,我設定'[問題]', '[測試]', '[閒聊]', '[報到]',可是不管何種主題都會加錢,

不知道是不是語法有錯\r
$no_reword_type = array('[問題]', '[測試]', '[閒聊]', '[報到]');

case 'newtopic':
$post_subject_type = substr($subject, 0, 6);
if( strpos($subject, "[") === false )
{
$reward_sql = ", user_money = user_money - 200";
}
else if( $mode == "newtopic" && !in_array($topic_title_type, no_reword_type) )
{
$reward_sql = ", user_money = user_money + 50";
}



感覺上 !in_array(...)
都沒有作用\r

謝謝

Re: [問題] 安裝了主題類型及虛擬貨幣,想要特定主題不要加錢

發表於 : 2005-11-28 16:27
hentaibbc
chenghwa 寫:問題外掛:主題類型及虛擬貨幣\r
參考連結:
使用版本:phpBB 2.0.18
網站位置:www.bestfood.shorturl.com
狀況描述:安裝了主題類型及虛擬貨幣,想要特定主題不要加錢,我設定'[問題]', '[測試]', '[閒聊]', '[報到]',可是不管何種主題都會加錢,

不知道是不是語法有錯\r
$no_reword_type = array('[問題]', '[測試]', '[閒聊]', '[報到]');

case 'newtopic':
$post_subject_type = substr($subject, 0, 6);
if( strpos($subject, "[") === false )
{
$reward_sql = ", user_money = user_money - 200";
}
else if( $mode == "newtopic" && !in_array($topic_title_type, no_reword_type) )
{
$reward_sql = ", user_money = user_money + 50";
}



感覺上 !in_array(...)
都沒有作用\r

謝謝
錯了
請用$no_reword_type

發表於 : 2005-11-29 11:12
chenghwa
謝謝

剛剛檢查我的程式是用\r
$no_reword_type
依然沒作用\r

謝謝