PHP7.2.9 Localhost上的非法字符串问题

时间:2018-09-12 11:38:58

标签: php apache localhost php-7.2

我在Localhost上遇到“非法字符串”问题。

但是我知道,这个问题取决于新的PHP版本,即PHP 7 +。

因此,在此版本中,某些内容已更改。例如,

我们不能再在PHP7中使用此方法:

$array = $something;
$array['value'] = 'something';

我们必须像这样使用它:

$array = (array) $something;
$array['value'] = 'something';

此外,在我的服务器上,我有PHP 7,但是旧方法可以在服务器上正常工作。我没有任何错误。为什么不在我的本地主机上工作? 您对此有任何想法吗?

我的服务器PHP版本详细信息:

*PHP 7.2.9-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Aug 19 2018 07:16:12) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.2.9-1+ubuntu16.04.1+deb.sury.org+1, 
Copyright (c) 1999-2018, by Zend Technologies*

我的Localhost PHP版本详细信息:

*PHP 7.2.9 (cli) (built: Aug 15 2018 23:29:19) ( ZTS MSVC15 (Visual C++ 2017) x86 )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies*

0 个答案:

没有答案