Reputation: 11381
I'm getting this message when I try to run a php script I have to use but did not write.
Deprecated: Function set_magic_quotes_runtime() is deprecated in /opt/lampp/htdocs/webEchange/SiteWeb_V5/inc/fpdf.php on line 1810
Here is line 1810:
set_magic_quotes_runtime(0);
If this is a deprecated function, what can I replace it with?
Thank you very much!
Upvotes: 74
Views: 198087
Reputation: 128
Delete these line from the fpdf.php file
if(get_magic_quotes_runtime()) @set_magic_quotes_runtime(0);
Upvotes: 0
Reputation: 1089
Just add the prefix "@" before the function to be @set_magic_quotes_runtime(0); Not supported anymore in php 5.4, and don't remove or disable the function
Upvotes: 3
Reputation: 1195
Just override them like:
if (!function_exists('set_magic_quotes_runtime')) {
function set_magic_quotes_runtime($new_setting) {
return true;
}
}
if (!function_exists('split')) {
function split($pattern, $string, $limit = -1) {
return explode($pattern, $string);
}
}
Upvotes: 1
Reputation: 71
I fixed mine by removing that line of code by commenting them out and it worked fine.
//if(get_magic_quotes_runtime())
// @set_magic_quotes_runtime(0);
Upvotes: 7
Reputation: 65599
Since Magic Quotes is now off by default (and removed in PHP v8), you can just remove that function call from your code.
Upvotes: 15
Reputation: 61
In PHP 7 we can use:
ini_set('magic_quotes_runtime', 0);
instead of set_magic_quotes_runtime(0);
Upvotes: 6
Reputation: 927
Update this function :
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
set_magic_quotes_runtime(0);
}
else {
ini_set('magic_quotes_runtime', 0);
}
$magic_quotes = get_magic_quotes_runtime();
$file_buffer = fread($fd, filesize($path));
$file_buffer = $this->EncodeString($file_buffer, $encoding);
fclose($fd);
if ($magic_quotes) {
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
set_magic_quotes_runtime($magic_quotes);
}
else {
ini_set('magic_quotes_runtime', $magic_quotes);
}
}
return $file_buffer;
Upvotes: 0
Reputation: 5085
add these code into the top of your script to solve problem
@set_magic_quotes_runtime(false);
ini_set('magic_quotes_runtime', 0);
Upvotes: 2
Reputation: 20279
I used FPDF v. 1.53 and didn't want to upgrade because of possible side effects. I used the following code according to Yacoby:
Line 1164:
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
$mqr=get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
}
Line 1203:
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
set_magic_quotes_runtime($mqr);
}
Upvotes: 34
Reputation: 43794
Check if it's on first. That should get rid of the warning and it'll ensure that if your code is run on older versions of PHP that magic quotes are indeed off.
Don't just remove that line of code as suggested by others unless you can be 100% sure that the code will never be run on anything before PHP 5.3.
<?php
// Check if magic_quotes_runtime is active
if(get_magic_quotes_runtime())
{
// Deactivate
set_magic_quotes_runtime(false);
}
?>
get_magic_quotes_runtime
is NOT deprecated in PHP 5.3.
Source: https://www.php.net/get_magic_quotes_runtime/
Upvotes: 73
Reputation: 55445
You don't need to replace it with anything. The setting magic_quotes_runtime
is removed in PHP6 so the function call is unneeded. If you want to maintain backwards compatibility it may be wise to wrap it in a if statement checking phpversion using version_compare
Upvotes: 8