语法错误,意外的T
我在PHP中有这一行:
if (( array_key_exists( $from, $arrRates ) && array_key_exists( $to, $arrRates ) )) {
return $amount + ( $arrRates[$to] $arrRates[$from] );
}
当我运行它时,出现错误:
解析错误:语法错误,C: xampp htdocs MediaAlbumWeb Utils Utils.php中的意外T_NS_SEPARATOR行218
什么是T_NS_SEPARATOR,它为什么是意外的?
使用/
而不是 。
T_NS_SEPARATOR( )主要用于转义,你要寻找的是分割的符号,它是
/
:
if (( array_key_exists( $from, $arrRates ) && array_key_exists( $to, $arrRates ) )) {
return $amount + ( $arrRates[$to] / $arrRates[$from] );
}
链接地址: http://www.djcxy.com/p/69467.html