- Posts: 106
- Thank you received: 10
Some of the most PHP 8 errors and fixes
- Support Team
- Topic Author
- Offline
- Moderator
Less
More
3 years 3 months ago - 3 years 3 months ago #2166
by Support Team
Some of the most PHP 8 errors and fixes was created by Support Team
Fix – PHP Notice: Use of undefined constant. (Mostly used in the product_info.php/html files)
or
Error Type: [E_NOTICE] Undefined variable: extrafields etc
This is a common notice / warning that occurs whenever PHP has detected the usage of an undefined constant. In case you didn’t already know, a constant is a simple value that cannot change during the execution of a script. i.e. If you define constant A as “123”, you won’t be able to change it to “456” at a later stage.
An example of a constant being defined in PHP:
PI is a good example of a constant, simply because the value for PI never changes. It will always be 3.14 and nothing in our code should be able to change that.
In some cases, this kind of notice can appear, even though the developer isn’t using any constants.
Forgetting to use a $ symbol at the start of a variable name.
n the above example, I have forgotten to place a dollar sign ($) in front of my $name variable. This will result in the error:
Notice: Use of undefined constant name – assumed ‘name’
or
Error Type: [E_NOTICE] Undefined variable: extrafields etc
This is a common notice / warning that occurs whenever PHP has detected the usage of an undefined constant. In case you didn’t already know, a constant is a simple value that cannot change during the execution of a script. i.e. If you define constant A as “123”, you won’t be able to change it to “456” at a later stage.
An example of a constant being defined in PHP:
Code:
<?php
//create a constant called PI
define('PI', 3.14);
//print it out to the screen.
echo PI;
PI is a good example of a constant, simply because the value for PI never changes. It will always be 3.14 and nothing in our code should be able to change that.
In some cases, this kind of notice can appear, even though the developer isn’t using any constants.
Forgetting to use a $ symbol at the start of a variable name.
Code:
<?php
//Create a simple variable called $name.
$name = "Wayne";
//Print it out.
echo name;
n the above example, I have forgotten to place a dollar sign ($) in front of my $name variable. This will result in the error:
Notice: Use of undefined constant name – assumed ‘name’
Last edit: 3 years 3 months ago by Support Team.
Please Log in or Create an account to join the conversation.
- Support Team
- Topic Author
- Offline
- Moderator
Less
More
- Posts: 106
- Thank you received: 10
3 years 3 months ago #2168
by Support Team
Replied by Support Team on topic Some of the most PHP 8 errors and fixes
Errors like this:
#0 Call to undefined function each()
can be rewrite like this:
#0 Call to undefined function each()
Code:
while (list($key, $value) = each($define_list)) {
can be rewrite like this:
Code:
foreach($define_list as $key => $value) {
Please Log in or Create an account to join the conversation.