$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Showing error "Function create_function() is deprecated"|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Showing error "Function create_function() is deprecated"

matteradmin8PV0评论

we are getting a error after updating a php version to 7.2

Deprecated: Function create_function() is deprecated in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/themes/Tigerdesign/inc/init.php on line 22

Warning: session_start(): Cannot start session when headers already sent in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/plugins/unyson/framework/includes/hooks.php on line 258

Notice: woocommerce_get_page_id is deprecated since version 3.0! Use wc_get_page_id instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

Notice: WC_Cart::get_cart_url is deprecated since version 2.5! Use wc_get_cart_url instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

we are getting a error after updating a php version to 7.2

Deprecated: Function create_function() is deprecated in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/themes/Tigerdesign/inc/init.php on line 22

Warning: session_start(): Cannot start session when headers already sent in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/plugins/unyson/framework/includes/hooks.php on line 258

Notice: woocommerce_get_page_id is deprecated since version 3.0! Use wc_get_page_id instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

Notice: WC_Cart::get_cart_url is deprecated since version 2.5! Use wc_get_cart_url instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

Share Improve this question edited Dec 31, 2018 at 7:20 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Dec 31, 2018 at 7:01 Devloper FirstDevloper First 411 gold badge1 silver badge3 bronze badges 1
  • Look at the file path in the first error. The problem is with your theme. You will need to contact the theme developer. Based on that error, and the last two errors, your theme is out of date and has not been updated for newer versions of WooCommerce and PHP. – Jacob Peattie Commented Dec 31, 2018 at 8:04
Add a comment  | 

1 Answer 1

Reset to default 4

Problem lies in your theme. It’s not compatible with PHP 7.2.

In this version the create_function is deprecated and you should use Anonymous Functions instead.

So for example instead of something like this:

$callback = create_function('', 'echo "'.str_replace('"', '\"', $section['desc']).'";');

You should use this:

$callback = function() {
    echo str_replace('"', '\"', $section['desc']);
};
Post a comment

comment list (0)

  1. No comments so far