Viewing 2 replies - 1 through 2 (of 2 total)
  • The error given is “Indirect access to variables, properties and methods will be evaluated strictly in left-to-right order since PHP 7.0. Use curly braces to remove ambiguity” on line 884:

    $$meta['key'] = $meta['value'];

    should be:

    ${$meta['key']} = $meta['value'];

    Thread Starter HOTIdeias PT

    (@hotideias)

    Hello

    Thanks for the tip.

    I already tested it and until the date everything ok

    Thank you
    Fernando

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Planning to upgrade to Php 7 and give a Errors…’ is closed to new replies.