mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix var_export() not working for ArrayObject class
This commit is contained in:
parent
3f7f802585
commit
e527269633
1 changed files with 1 additions and 4 deletions
|
|
@ -418,10 +418,7 @@ function url2path($url)
|
|||
function var_export_clean($var)
|
||||
{
|
||||
$result = var_export($var, true);
|
||||
if (version_compare(PHP_VERSION, '7.3', '<'))
|
||||
{
|
||||
$result = preg_replace('/stdClass::__set_state\((?=array\(\n)/', '(object)(', $result);
|
||||
}
|
||||
$result = preg_replace('/(?:ArrayObject|stdClass)::__set_state\((?=array\(\n)/', '(object)(', $result);
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue