php 7.2 upgrade error “Cannot assign an empty string to a string offset”












0















I'm working with an aged wordpress theme which I really like and I only have some basic coding skills. My provider forcably upgraded my server php version to 7.2 and of course some of my scripts are breaking down.



public function localize( $handle, $object_name, $l10n ) {
if ( $handle === 'jquery' )
$handle = 'jquery-core';

if ( is_array($l10n) && isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
$after = $l10n['l10n_print_after'];
unset($l10n['l10n_print_after']);
}

foreach ( (array) $l10n as $key => $value ) {
if ( !is_scalar($value) )
continue;

$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
}``


According to the log the error is in the last line because in that like apparently it "Cannot assign an empty string to a string offset"



Maybe this is a lot more complicated than changing one simple thing....any solutions for that?










share|improve this question























  • what is $l10n is it an array? public function localize( $handle, $object_name, array $l10n ) It looks like it could be mixed data type is_array($l10n) and (array) $l10n if you try to set a key on a string, you get an error like that.

    – ArtisticPhoenix
    Jan 2 at 21:33


















0















I'm working with an aged wordpress theme which I really like and I only have some basic coding skills. My provider forcably upgraded my server php version to 7.2 and of course some of my scripts are breaking down.



public function localize( $handle, $object_name, $l10n ) {
if ( $handle === 'jquery' )
$handle = 'jquery-core';

if ( is_array($l10n) && isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
$after = $l10n['l10n_print_after'];
unset($l10n['l10n_print_after']);
}

foreach ( (array) $l10n as $key => $value ) {
if ( !is_scalar($value) )
continue;

$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
}``


According to the log the error is in the last line because in that like apparently it "Cannot assign an empty string to a string offset"



Maybe this is a lot more complicated than changing one simple thing....any solutions for that?










share|improve this question























  • what is $l10n is it an array? public function localize( $handle, $object_name, array $l10n ) It looks like it could be mixed data type is_array($l10n) and (array) $l10n if you try to set a key on a string, you get an error like that.

    – ArtisticPhoenix
    Jan 2 at 21:33
















0












0








0








I'm working with an aged wordpress theme which I really like and I only have some basic coding skills. My provider forcably upgraded my server php version to 7.2 and of course some of my scripts are breaking down.



public function localize( $handle, $object_name, $l10n ) {
if ( $handle === 'jquery' )
$handle = 'jquery-core';

if ( is_array($l10n) && isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
$after = $l10n['l10n_print_after'];
unset($l10n['l10n_print_after']);
}

foreach ( (array) $l10n as $key => $value ) {
if ( !is_scalar($value) )
continue;

$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
}``


According to the log the error is in the last line because in that like apparently it "Cannot assign an empty string to a string offset"



Maybe this is a lot more complicated than changing one simple thing....any solutions for that?










share|improve this question














I'm working with an aged wordpress theme which I really like and I only have some basic coding skills. My provider forcably upgraded my server php version to 7.2 and of course some of my scripts are breaking down.



public function localize( $handle, $object_name, $l10n ) {
if ( $handle === 'jquery' )
$handle = 'jquery-core';

if ( is_array($l10n) && isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
$after = $l10n['l10n_print_after'];
unset($l10n['l10n_print_after']);
}

foreach ( (array) $l10n as $key => $value ) {
if ( !is_scalar($value) )
continue;

$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
}``


According to the log the error is in the last line because in that like apparently it "Cannot assign an empty string to a string offset"



Maybe this is a lot more complicated than changing one simple thing....any solutions for that?







php wordpress






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 2 at 21:28









EaZyEaZy

82




82













  • what is $l10n is it an array? public function localize( $handle, $object_name, array $l10n ) It looks like it could be mixed data type is_array($l10n) and (array) $l10n if you try to set a key on a string, you get an error like that.

    – ArtisticPhoenix
    Jan 2 at 21:33





















  • what is $l10n is it an array? public function localize( $handle, $object_name, array $l10n ) It looks like it could be mixed data type is_array($l10n) and (array) $l10n if you try to set a key on a string, you get an error like that.

    – ArtisticPhoenix
    Jan 2 at 21:33



















what is $l10n is it an array? public function localize( $handle, $object_name, array $l10n ) It looks like it could be mixed data type is_array($l10n) and (array) $l10n if you try to set a key on a string, you get an error like that.

– ArtisticPhoenix
Jan 2 at 21:33







what is $l10n is it an array? public function localize( $handle, $object_name, array $l10n ) It looks like it could be mixed data type is_array($l10n) and (array) $l10n if you try to set a key on a string, you get an error like that.

– ArtisticPhoenix
Jan 2 at 21:33














2 Answers
2






active

oldest

votes


















0














The most logical thing to do here is to change it to update in the in_array condition:



if ( is_array($l10n){
if(isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
$after = $l10n['l10n_print_after'];
unset($l10n['l10n_print_after']);
}
foreach ($l10n as $key => $value ) {
if ( !is_scalar($value) )
continue;

$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
}
}


Even if you cast (array)$l10n to an array, this doesn't set the variable itself to be an array ( like $l10n = (array)$l10n).



That said, working with mixed types can be really cumbersome. It's better to send it only arrays or deal with the array bit first, that way you have a consistent type. Like this:



public function localize( $handle, $object_name, $l10n ) {
//normalize arguments
if(!is_array($l10n)) $l10n = [$l10n];

if ( $handle === 'jquery' )
$handle = 'jquery-core';

if ( isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
$after = $l10n['l10n_print_after'];
unset($l10n['l10n_print_after']);
}

foreach ($l10n as $key => $value ) {
if ( !is_scalar($value) )
continue;

$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
}
}





share|improve this answer


























  • Thank you @ArtisticPhoenix. This got rid of the Error

    – EaZy
    Jan 2 at 21:49











  • Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

    – EaZy
    Jan 2 at 22:12






  • 1





    If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

    – ArtisticPhoenix
    Jan 2 at 22:19











  • @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

    – cabrerahector
    Jan 2 at 23:33











  • OK thank you I did accept it. even though my upvotes don't count until I reach 15

    – EaZy
    Jan 3 at 11:38



















-1














Another possible route to fixing this is to force your server to run an older version of php if they can do that. For example with pantheon.io you can force the server to run a certain version of php in the server config file.



Unless you would like to modernize all your scripts, then ignore this.






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013407%2fphp-7-2-upgrade-error-cannot-assign-an-empty-string-to-a-string-offset%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    The most logical thing to do here is to change it to update in the in_array condition:



    if ( is_array($l10n){
    if(isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }
    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }


    Even if you cast (array)$l10n to an array, this doesn't set the variable itself to be an array ( like $l10n = (array)$l10n).



    That said, working with mixed types can be really cumbersome. It's better to send it only arrays or deal with the array bit first, that way you have a consistent type. Like this:



    public function localize( $handle, $object_name, $l10n ) {
    //normalize arguments
    if(!is_array($l10n)) $l10n = [$l10n];

    if ( $handle === 'jquery' )
    $handle = 'jquery-core';

    if ( isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }

    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }





    share|improve this answer


























    • Thank you @ArtisticPhoenix. This got rid of the Error

      – EaZy
      Jan 2 at 21:49











    • Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

      – EaZy
      Jan 2 at 22:12






    • 1





      If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

      – ArtisticPhoenix
      Jan 2 at 22:19











    • @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

      – cabrerahector
      Jan 2 at 23:33











    • OK thank you I did accept it. even though my upvotes don't count until I reach 15

      – EaZy
      Jan 3 at 11:38
















    0














    The most logical thing to do here is to change it to update in the in_array condition:



    if ( is_array($l10n){
    if(isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }
    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }


    Even if you cast (array)$l10n to an array, this doesn't set the variable itself to be an array ( like $l10n = (array)$l10n).



    That said, working with mixed types can be really cumbersome. It's better to send it only arrays or deal with the array bit first, that way you have a consistent type. Like this:



    public function localize( $handle, $object_name, $l10n ) {
    //normalize arguments
    if(!is_array($l10n)) $l10n = [$l10n];

    if ( $handle === 'jquery' )
    $handle = 'jquery-core';

    if ( isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }

    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }





    share|improve this answer


























    • Thank you @ArtisticPhoenix. This got rid of the Error

      – EaZy
      Jan 2 at 21:49











    • Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

      – EaZy
      Jan 2 at 22:12






    • 1





      If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

      – ArtisticPhoenix
      Jan 2 at 22:19











    • @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

      – cabrerahector
      Jan 2 at 23:33











    • OK thank you I did accept it. even though my upvotes don't count until I reach 15

      – EaZy
      Jan 3 at 11:38














    0












    0








    0







    The most logical thing to do here is to change it to update in the in_array condition:



    if ( is_array($l10n){
    if(isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }
    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }


    Even if you cast (array)$l10n to an array, this doesn't set the variable itself to be an array ( like $l10n = (array)$l10n).



    That said, working with mixed types can be really cumbersome. It's better to send it only arrays or deal with the array bit first, that way you have a consistent type. Like this:



    public function localize( $handle, $object_name, $l10n ) {
    //normalize arguments
    if(!is_array($l10n)) $l10n = [$l10n];

    if ( $handle === 'jquery' )
    $handle = 'jquery-core';

    if ( isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }

    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }





    share|improve this answer















    The most logical thing to do here is to change it to update in the in_array condition:



    if ( is_array($l10n){
    if(isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }
    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }


    Even if you cast (array)$l10n to an array, this doesn't set the variable itself to be an array ( like $l10n = (array)$l10n).



    That said, working with mixed types can be really cumbersome. It's better to send it only arrays or deal with the array bit first, that way you have a consistent type. Like this:



    public function localize( $handle, $object_name, $l10n ) {
    //normalize arguments
    if(!is_array($l10n)) $l10n = [$l10n];

    if ( $handle === 'jquery' )
    $handle = 'jquery-core';

    if ( isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
    $after = $l10n['l10n_print_after'];
    unset($l10n['l10n_print_after']);
    }

    foreach ($l10n as $key => $value ) {
    if ( !is_scalar($value) )
    continue;

    $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
    }
    }






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jan 2 at 21:45

























    answered Jan 2 at 21:38









    ArtisticPhoenixArtisticPhoenix

    18.2k11226




    18.2k11226













    • Thank you @ArtisticPhoenix. This got rid of the Error

      – EaZy
      Jan 2 at 21:49











    • Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

      – EaZy
      Jan 2 at 22:12






    • 1





      If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

      – ArtisticPhoenix
      Jan 2 at 22:19











    • @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

      – cabrerahector
      Jan 2 at 23:33











    • OK thank you I did accept it. even though my upvotes don't count until I reach 15

      – EaZy
      Jan 3 at 11:38



















    • Thank you @ArtisticPhoenix. This got rid of the Error

      – EaZy
      Jan 2 at 21:49











    • Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

      – EaZy
      Jan 2 at 22:12






    • 1





      If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

      – ArtisticPhoenix
      Jan 2 at 22:19











    • @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

      – cabrerahector
      Jan 2 at 23:33











    • OK thank you I did accept it. even though my upvotes don't count until I reach 15

      – EaZy
      Jan 3 at 11:38

















    Thank you @ArtisticPhoenix. This got rid of the Error

    – EaZy
    Jan 2 at 21:49





    Thank you @ArtisticPhoenix. This got rid of the Error

    – EaZy
    Jan 2 at 21:49













    Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

    – EaZy
    Jan 2 at 22:12





    Hi everyone. Any suggestions as to how to change the last line in this code so it won't throw a "deprecated function" alert in the log? function make_plural_form_function($nplurals, $expression) { $expression = str_replace('n', '$n', $expression); $func_body = " $index = (int)($expression); return ($index < $nplurals)? $index : $nplurals - 1;"; return create_function('$n', $func_body); Thank you for your help

    – EaZy
    Jan 2 at 22:12




    1




    1





    If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

    – ArtisticPhoenix
    Jan 2 at 22:19





    If you have another different problem I suggest posting it as a proper question. It will be much easier to deal with that way, instead of muddying the waters.

    – ArtisticPhoenix
    Jan 2 at 22:19













    @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

    – cabrerahector
    Jan 2 at 23:33





    @EaZy: if Phoenix's answer helped you fix the issue, it'd be nice if in return you accepted his answer: What should I do if someone answers my question?

    – cabrerahector
    Jan 2 at 23:33













    OK thank you I did accept it. even though my upvotes don't count until I reach 15

    – EaZy
    Jan 3 at 11:38





    OK thank you I did accept it. even though my upvotes don't count until I reach 15

    – EaZy
    Jan 3 at 11:38













    -1














    Another possible route to fixing this is to force your server to run an older version of php if they can do that. For example with pantheon.io you can force the server to run a certain version of php in the server config file.



    Unless you would like to modernize all your scripts, then ignore this.






    share|improve this answer




























      -1














      Another possible route to fixing this is to force your server to run an older version of php if they can do that. For example with pantheon.io you can force the server to run a certain version of php in the server config file.



      Unless you would like to modernize all your scripts, then ignore this.






      share|improve this answer


























        -1












        -1








        -1







        Another possible route to fixing this is to force your server to run an older version of php if they can do that. For example with pantheon.io you can force the server to run a certain version of php in the server config file.



        Unless you would like to modernize all your scripts, then ignore this.






        share|improve this answer













        Another possible route to fixing this is to force your server to run an older version of php if they can do that. For example with pantheon.io you can force the server to run a certain version of php in the server config file.



        Unless you would like to modernize all your scripts, then ignore this.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 3 at 0:55









        NickCNickC

        345




        345






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013407%2fphp-7-2-upgrade-error-cannot-assign-an-empty-string-to-a-string-offset%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith