myproject升級到php7.2
laravel 5.2。本地開發(fā)環(huán)境php7.1翔烁,線上php7.0。要把php7.0升級到php7.2友驮。
目前遇到的問題就是each漂羊、count 這兩個。
1.each 廢棄
2.count 只能 countable type 的變量
以下是遇到一些小問題喊儡。做個記錄拨与。
1. ModulesServiceProvider.php The each() function is deprecated. This message will be suppressed on further calls
while (list(, $module) = each($modules)) {
// Load the routes for each of the modules
if (file_exists(__DIR__ . '/' . $module . '/routes.php')) {
include __DIR__ . '/' . $module . '/routes.php';
}
// Load the views
if (is_dir(__DIR__ . '/' . $module . '/Views')) {
$this->loadViewsFrom(__DIR__ . '/' . $module . '/Views', $module);
}
}
php 7.2 廢棄了each 。while(...each..)改成foreah 即可
修改為
foreach ($modules as $module) {
// Load the routes for each of the modules
if (file_exists(__DIR__ . '/' . $module . '/routes.php')) {
include __DIR__ . '/' . $module . '/routes.php';
}
// Load the views
if (is_dir(__DIR__ . '/' . $module . '/Views')) {
$this->loadViewsFrom(__DIR__ . '/' . $module . '/Views', $module);
}
}
2. ErrorException in Builder.php line 772:
count(): Parameter must be an array or an object that implements Countable
問題定位到了艾猜。in Builder.php line 772
at HandleExceptions->handleError('2', 'count(): Parameter must be an array or an object that implements Countable', 'F:\iProject\myproject\vendor\laravel\framework\src\Illuminate\Database\Query\Builder.php', '772', array('query' => object(Builder), 'boolean' => 'and'))
問題源
public function addNestedWhereQuery($query, $boolean = 'and')
{
if (count($query->wheres)) {
$type = 'Nested';
$this->wheres[] = compact('type', 'query', 'boolean');
$this->addBinding($query->getBindings(), 'where');
}
return $this;
}
我打印 query->wheres 為 NULL捻悯。count(NULL) 在其他版本結(jié)果為 0.
修改為
if ($query->wheres != NULL && count($query->wheres)) {
$type = 'Nested';
$this->wheres[] = compact('type', 'query', 'boolean');
$this->addBinding($query->getBindings(), 'where');
}
但是這樣就動了框架了匆赃。我以為新框架會對這段做改變。我之后下載了laravel 5.7的框架今缚。這段代碼沒變算柳。
3.當我開始測腳本的時候
$ APP_ENV="test" php72 artisan CategoryCron
count(): Parameter must be an array or an object that implements Countab
定位。在處理異常的地方打印行數(shù)與文件
int(67)
string(68) "F:\iProject\myproject\vendor\guzzlehttp\guzzle\src\Handler\CurlFactory.php"
找到代碼
public function release(EasyHandle $easy)
{
$resource = $easy->handle;
unset($easy->handle);
if (count($this->handles) >= $this->maxHandles) {
curl_close($resource);
跟上面一樣姓言。$this->handles為null所以才報錯了瞬项。兼容方式跟問題2
一樣。
改框架不好何荚,還是在業(yè)務(wù)層面修改
改框架的問題就是囱淋。當你有天(或者別人)。composer update
的時候餐塘。舊的框架代碼移除妥衣,新的覆蓋。你的修改又都沒了戒傻。
改了框架并沒有避免NULL傳入税手。所以要在自己寫的代碼層面去控制。
再看問題2
報錯的調(diào)用trace
in Builder.php line 772
at HandleExceptions->handleError('2', 'count(): Parameter must be an array or an object that implements Countable', 'F:\iProject\myproject\vendor\laravel\framework\src\Illuminate\Database\Query\Builder.php', '772', array('query' => object(Builder), 'boolean' => 'and'))
at count(null) in Builder.php line 772
at Builder->addNestedWhereQuery(object(Builder), 'and') in Builder.php line 778
我們看誰調(diào)用了 addNestedWhereQuery
需纳,\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Builder.php
里面的 where 方法
調(diào)用 了$this->query->addNestedWhereQuery($query->getQuery(), $boolean);
也就是說 調(diào)用where方法要傳一個query->getQuery(),還不能為null。
再看看業(yè)務(wù)代碼不翩,找到一些類似如下的代碼
->where(function ($query) use ($condition) {
if (!empty($condition['title'])) {
$query->where('page.title', 'like', '%' . $condition['title'] . '%');
}
})
->where(function ($query) use ($condition) {
if (!empty($condition['author'])) {
$query->where('page.author', 'like', '%' . $condition['author'] . '%');
}
})
看完之后兵扬,就明白了。原因了慌盯。沒有傳條件的時候周霉,是沒有$query->where()。所以就為NULL亚皂。
修正俱箱,多個where 合并到一個where即可。再加一行代碼灭必, $query->where('page.id', '>' . 0');(這不是一個很好的解決方式狞谱,但是先讓代碼跑起來乃摹。當然我們知道了原因,怎么做有很多方式了跟衅,對吧)
->where(function ($query) use ($condition) {
if (!empty($condition['title'])) {
$query->where('page.title', 'like', '%' . $condition['title'] . '%');
}
if (!empty($condition['author'])) {
$query->where('page.author', 'like', '%' . $condition['author'] . '%');
}
$query->where('page.id', '>' . 0');
})
再看問題3
網(wǎng)上有人遇到這個問題孵睬。Crash CurlFactory:67 - PHP 7.2.0-dev
現(xiàn)在的6.3 版本是沒問題的。因為框架默認給了$handles一個[]伶跷。
class CurlFactory implements CurlFactoryInterface
{
/** @var array */
private $handles;
變成了如下掰读。
class CurlFactory implements CurlFactoryInterface
{
/** @var array */
private $handles = [];
單獨 composer update guzzlehttp/guzzle遇到了一個小問題,意思是不能單獨升級guzzle叭莫,其他依賴版本不升也不行蹈集。
所以我們可以思考一個問題。當我們寫代碼雇初,聲明屬性的時候拢肆。如果是數(shù)組那還是初始化一個[],否則某天方法中count就會報錯了靖诗。
參考資料:
- 《php 7.2 一些注意事項.郭怪,php7.2注意事項》http://www.bkjia.com/PHPjc/1235440.html
- 《從PHP 7.1.x 移植到 PHP 7.2.x》http://php.net/manual/zh/migration72.php 可以看官網(wǎng)文檔了解下,新特性以及兼容等等