我一直得到以下错误,我实际上不知道为什么 - 我花了很长时间才想弄明白 - 但到目前为止没有运气。
错误:
Parse error: syntax error, unexpected 'function' (T_FUNCTION) in /home/g
/crm.dk/wp-content/plugins/oa/lib/php/bill.php on line 1
代码:
<?php
/******************************************/
/* Generalt */
/******************************************/
function update_stuff($sStuff)
{
....
....
....
....
]
答案 0 :(得分:2)
功能结束括号错误
<?php
/******************************************/
/* Generalt */
/******************************************/
function update_stuff($sStuff)
{
....
....
....
....
}