@TOC
PhpStrom 如何消除黄色警告 PhpStrom 消除右边栏出现一堆黄色警告 参考下面解决方法。学会举一反三
使用PHP内置函数json_encode或json_decodePhpStorm说这个函数是未定义的。
使用PHP内置函数json_encode或json_decodePhpStorm说这个函数是未定义的。
解决方案: 在composer.json文件中添加
在这里插入图片描述
使用PHP的 curl_init() 函数出现警告
使用PHP的 curl_init() 函数出现黄色警告,解决方法如下:
composer.json 文件 添加 "ext-curl": "*"
{
"name": "topthink/thinkphp",
"description": "the ThinkPHP Framework",
"type": "framework",
"keywords": ["framework","thinkphp","ORM"],
"homepage": "http://thinkphp.cn/",
"license": "Apache2",
"authors": [
{
"name": "liu21st",
"email": "liu21st@gmail.com"
}
],
"require": {
"php": ">=5.3.0",
"ext-json": "*",
"ext-curl": "*"
},
"minimum-stability": "dev"
}
网友评论