Jump to content

Unsupported operand types: int + string in after ( php 8 update)


Zacks
Go to solution Solved by Barand,

Recommended Posts

How are doin' folks,

When l update to PHP 8  - I get the following error: Fatal error: Uncaught TypeError: Unsupported operand types: int + string in 

 <?php //the_field( "size" );

                  $internal = get_field('internal');
                  $terrace = get_field('terrace');
                  $garden = get_field('garden');

                  $total = $internal + $terrace + $garden;

                  echo $total;

                  ?>

 

Link to comment
Share on other sites

Your error message points to something type-related but your code doesn't seem to be doing anything involving types.   Do you want to revise your post, or perhaps do a bit more describing and maybe even show us the error line the is being referenced in the whole message?  Unless the error is tied to the last line.   And what is this get_field function?  Something in your script that you are not showing us?

Edited by ginerjm
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.