Install WordPress problem, please help answer, thank you
Parse error:syntax error, unexpected t_variable in/z4/l/lin1860/public_html/wp-includes/option.php on line 225
After uploading WordPress to the virtual host space, the above error occurs when you run the installation. The same file that was installed yesterday in the other host space can be smooth, but now
This space on the occurrence of the above error, ask is there the problem, space use PHP Version 4.4.9
I checked the option.php. 225 lines of code for $newvalue = Clone $newvalue;
The code should be fine because I installed it only once yesterday. is not PHP version low, or other problems, to help solve, thank you
------Solution--------------------
The Clone keyword only exists in PHP5.
The manual has
Object replication can be done by using the Clone keyword (which, if possible, calls the object's __clone () method). The __clone () method in the object cannot be called directly.
$copy _of_object = Clone $object;
When the object is copied, PHP5 performs a shallow copy of all properties of the object (shallow copy). All reference properties will still be a reference to the original variable.
But this $newvalue = Clone $newvalue; It's too rude.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.