Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
执行 phpdocx 创建函数时出现错误。虽然它在本地工作正常。
严重性:注意 --> 未定义索引:log4php.threshold
这只是来自的通知phpdocx,可能不是所有的通知都已解决,您可以禁用来自生产服务器的通知。修改php.ini:
phpdocx
php.ini
error_reporting = E_ALL & ~E_NOTICE
当undefined indexphp 脚本在数组中找不到匹配的索引时,会发出通知。
undefined index
您必须使用print_r($array)或var_dump($array)是否包含此索引来检查您的数组。
print_r($array)
var_dump($array)