2

mantisでカスタムフィールドを構成しているときに、このエラーメッセージが表示されました。

解析エラー:構文エラー、3行目のC:\ wamp \ www \ MyProj\custom_strings_inc.phpの予期しないT_STRING

コードは

<?php
if( lang_get_current() == 'german' ) {
    $defect_impact = 'Defect Impact'; #// German translation of Defect Impact
    $defect_type =  'Defect Type'; #// German translation of Defect Type
    $phase_of_origin =  ’Phase Of Origin’; #// German translation of Phase Of Origin
}else{
# Default (use your preferred language as the default)
    $defect_impact = 'Defect Impact'; // German translation of Defect Impact
    $defect_type =  'Defect Type'; // German translation of Defect Type
    $phase_of_origin =  'Phase Of Origin'; // German translation of Phase Of Origin
}
?>
4

1 に答える 1

9

この行の間違った引用:

$phase_of_origin =  ’Phase Of Origin’;

する必要があります:

$phase_of_origin =  'Phase Of Origin';
于 2011-10-14T02:49:27.537 に答える