Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

count - tinybutstrong receive error in tbs_class.php after upgrading to PHP 7.4

My hosting service upgraded my PHP version to 7.4 without notice. I'm now reciving the following error in the error log that points to the tbs_class.php PHP Warning: count(): Parameter must be an array or an object that implements Countable in tbs_class.php on line 2206

/** *

function meth_Merge_Block(&$Txt,$BlockLst,&$SrcId,&$Query,$SpePrm,$SpeRecNum,$QryPrms=false) {

$BlockSave = $this->_CurrBlock;
$this->_CurrBlock = $BlockLst;

// Get source type and info
$Src = new clsTbsDataSource;
if (!$Src->DataPrepare($SrcId,$this)) {
    $this->_CurrBlock = $BlockSave;
    return 0;
}

if (is_string($BlockLst)) $BlockLst = explode(',', $BlockLst);
**$BlockNbr = count($BlockLst);**
$BlockId = 0;
$WasP1 = false;
$NbrRecTot = 0;
$QueryZ = &$Query;
$ReturnData = false;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...