compile errors expecting identifier

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Dear all,

I have below error that syntax error, expecting identifier. But I do not know how to solve??
 

Attachments

  • expecting identifier error.png
    expecting identifier error.png
    107.5 KB · Views: 1,474
'clone' is likely a reserved keyword - you have to pick a name that's not also a PHP keyword. I would try something more descriptive anyway, like img_clone and see if that works. http://php.net/manual/en/internals2.opcodes.clone.php
 
Back
Top