可可的可 发表于 6 天前

关于PHP8.2 错误日志大量 PHP Fatal error: Out of memory New

PHP Fatal error:Out of memory (allocated 2097152 bytes) (tried to allocate 8192 bytes) in C:\Website\source\function\function_core.php on line 2280


PHP Fatal error:Out of memory (allocated 2097152 bytes) (tried to allocate 4096 bytes) in C:\Website\source\function\function_core.php on line 2269


PHP Version 8.2.30,千问说是memory_limit限制了2mb,但是用phpinfo查看是 memory_limit = 128M



是什么问题呢?


我知道答案 回答被采纳将会获得1 贡献 已有3人回答

知行社区 发表于 6 天前

错误发生在:
line 2232: 在 dintval() 函数中,尝试分配 20480 字节
line 2269: 在 dintval() 函数中,尝试分配 4096 字节
line 2280: 在 dintval() 函数中,尝试分配 8192 字节
核心问题是 dintval() 函数的递归调用在 PHP 8.2 中可能导致内存爆炸式增长!

官方有没有这个问题,或者有考虑优化吗?

IT618应用中心 发表于 6 天前

php
                                                                                                                                                                                                                                                                                                                                                         
                                                                                       
               
                                        ▼ 展开               
       
   

                        dintval的作用就是递归处理数组中的每个元素,这是绕不过去的需要。递归调用使用内存多少取决于这个数组有多大,越大的数组自然需要的内存越多,但这理论上不太可能超的。我这边PHP8.2用dintval处理完全没问题,从dintval函数中分析,这个是很常见且基础的操作。
       

                            

[*]PHP默认递归深度限制(zend.max_nesting_level)通常为100-256
[*]深度递归会占用大量栈内存,可能导致内存溢出或"Maximum function nesting level exceeded"错误。
[*]PHP 8.2的内存管理虽然有优化,但基本递归限制仍然存在。
[*]Discuz!项目中dintval主要用于处理一维ID数组(如dintval($ids, true))
[*]Discuz!项目中未发现处理深度嵌套数组的场景
[*]Discuz!项目中大部分使用场景是安全的
                  

                        所以,其实主要是看你在哪使用这个函数,不恰当的使用才有风险,对于深度特别大,数组本身特别大的地方,要慎用。函数本身无错。如果你想要优化修改,可以考虑改成迭代写法(未经验证),如下:
       

                                                    php
                                                                                                                                                                                                                                                                                                                                                         
                                                                                       
               
                                        ▼ 展开               
       
   

.ce-block {    margin-bottom: 20px;}.ce-block__content,.ce-toolbar__content {        /* max-width:calc(100% - 50px) */        margin-left: auto;        margin-right: auto;        position: relative;}/* 主容器 */.editorjs-codeFlask_Wrapper {    border: 1px solid #dcdfe6;    border-radius: 5px;    background-color: #f6f8fa;    margin-bottom: 10px;    position: relative;    transition: all 0.3s ease;    width: 100%;    min-height: 100px;    overflow: hidden;}/* 标题栏 */.editorjs-codeFlask_Header {    display: flex;    justify-content: flex-end;    align-items: center;    padding: 8px 12px;    background-color: #e9ecef;    border-bottom: 1px solid #dcdfe6;    position: relative;    z-index: 0; /* 从10降低到2 */}/* 语言显示 */.editorjs-codeFlask_LangDisplay {    padding: 2px 8px;    background-color: #409eff;    color: white;    border-radius: 3px;    font-size: 12px;    font-weight: 500;    position: absolute;    left: 12px;    top: 50%;    transform: translateY(-50%);}/* 内容容器 - 禁止纵向滚动 */.editorjs-codeFlask_ContentContainer {    position: relative;    min-height: 100px;    overflow-x: hidden; /* 禁止横向滚动 */    overflow-y: hidden;    transition: height 0.3s ease;}/* 编辑器容器 - 禁止纵向滚动 */.editorjs-codeFlask_Editor {    position: relative;    min-height: 100px;    overflow-x: hidden; /* 禁止横向滚动 */    overflow-y: hidden;    transition: height 0.3s ease;}/* 底部按钮容器 - 优化为更简洁的样式 */.editorjs-codeFlask_BottomButtonContainer {    display: flex;    justify-content: center;    align-items: center;    padding: 4px;    background-color: #f8f9fa;    border-top: 1px solid #e9ecef;    position: relative;    z-index: 0;}/* 底部横向折叠/展开按钮 - 优化样式,使其更融入设计 */.editorjs-codeFlask_BottomToggle {    width: 100%;    background-color: transparent;    color: #606266;    border: none;    border-radius: 4px;    padding: 6px 12px;    font-size: 12px;    font-weight: 400;    cursor: pointer;    transition: all 0.3s ease;    display: flex;    align-items: center;    justify-content: center;    gap: 4px;    text-align: center;    position: relative;}.editorjs-codeFlask_BottomToggle:hover {    background-color: #e9ecef;    color: #409eff;}.editorjs-codeFlask_BottomToggle:active {    background-color: #dee2e6;}.editorjs-codeFlask_BottomToggle .toggle-icon {    font-size: 11px;    transition: transform 0.3s ease;}/* 展开按钮(显示"展开"文本)上边缘添加渐变虚化效果 */.editorjs-codeFlask_BottomToggle:has(span.toggle-icon:contains("▲"))::before {    content: '';    position: absolute;    top: 0;    left: 0;    right: 0;    height: 6px;    background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);    pointer-events: none;}/* 展开按钮(显示"展开"文本)上边缘添加渐变虚化效果 *//* 删除不被广泛支持的:contains()选择器 */.editorjs-codeFlask_BottomToggle.expand-mode::before {    content: '';    position: absolute;    top: -60px;    left: 0;    right: 0;    height: 60px;    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%, rgba(248, 249, 250, 1) 100%);    pointer-events: none;}/* CodeFlask 主容器样式 */.editorjs-codeFlask_Editor .codeflask {    position: relative;    background: #fafafa;    border-radius: 0 0 4px 4px;    min-height: 100px;    overflow-x: hidden; /* 禁止横向滚动 */    overflow-y: hidden;    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;}/* 行号容器 */.editorjs-codeFlask_Editor .codeflask.codeflask--has-line-numbers:before {    content: '';    position: absolute;    left: 0;    top: 0;    bottom: 0;    width: 40px;    background-color: #f5f5f5;    border-right: 1px solid #e0e0e0;    z-index: 0;}/* 行号 */.editorjs-codeFlask_Editor .codeflask__lines {    position: absolute;    left: 0;    top: 0;    bottom: 0;    width: 40px;    padding: 10px 0;    background-color: #f5f5f5;    border-right: 1px solid #e0e0e0;    z-index: 0;    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;    font-size: 14px;    line-height: 21px;    color: #666;    text-align: right;    user-select: none;    overflow: hidden;}.editorjs-codeFlask_Editor .codeflask__lines__line {    padding-right: 8px;}/* 文本区域 - 输入框 */.editorjs-codeFlask_Editor .codeflask__textarea {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    padding: 10px;    border: none;    background: transparent;    color: transparent;    caret-color: #333;    resize: none;    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;    font-size: 14px;    line-height: 21px;    z-index: 1;    overflow-x: hidden; /* 禁止横向滚动 */    overflow-y: hidden;    white-space: pre-wrap; /* 自动换行 */    tab-size: 4;    outline: none;}/* 添加选中文本样式 */.editorjs-codeFlask_Editor .codeflask__textarea::selection {    background-color: #b3d4fc;    color: #333;}.editorjs-codeFlask_Editor .codeflask__textarea::-moz-selection {    background-color: #b3d4fc;    color: #333;}/* 代码预览区域 */.editorjs-codeFlask_Editor .codeflask__pre {    position: absolute;    top: 0;    left: 0;    width: 100%; /* 确保宽度不超出容器 */    height: 100%;    padding: 10px;    margin: 0;    border: none;    background: transparent;    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;    font-size: 14px;    line-height: 21px;    z-index: 0;    overflow-x: hidden; /* 禁止横向滚动 */    overflow-y: hidden;    white-space: pre-wrap; /* 自动换行 */    pointer-events: none;}/* 代码高亮区域 */.editorjs-codeFlask_Editor .codeflask__code {    display: block;    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;    font-size: 14px;    line-height: 21px;    color: #333;    white-space: pre-wrap; /* 自动换行 */    tab-size: 4;    overflow: visible;}/* 语法高亮样式 - 确保Prism.js样式正确应用 */.editorjs-codeFlask_Editor .codeflask__code {    background: transparent !important;}/* 通用语法高亮token样式 */.editorjs-codeFlask_Editor .token.comment,.editorjs-codeFlask_Editor .token.prolog,.editorjs-codeFlask_Editor .token.doctype,.editorjs-codeFlask_Editor .token.cdata {    color: #708090;}.editorjs-codeFlask_Editor .token.punctuation {    color: #999;}.editorjs-codeFlask_Editor .token.namespace {    opacity: 0.7;}.editorjs-codeFlask_Editor .token.property,.editorjs-codeFlask_Editor .token.tag,.editorjs-codeFlask_Editor .token.boolean,.editorjs-codeFlask_Editor .token.number,.editorjs-codeFlask_Editor .token.constant,.editorjs-codeFlask_Editor .token.symbol,.editorjs-codeFlask_Editor .token.deleted {    color: #905;}.editorjs-codeFlask_Editor .token.selector,.editorjs-codeFlask_Editor .token.attr-name,.editorjs-codeFlask_Editor .token.string,.editorjs-codeFlask_Editor .token.char,.editorjs-codeFlask_Editor .token.builtin,.editorjs-codeFlask_Editor .token.inserted {    color: #690;}.editorjs-codeFlask_Editor .token.operator,.editorjs-codeFlask_Editor .token.entity,.editorjs-codeFlask_Editor .token.url,.editorjs-codeFlask_Editor .language-css .token.string,.editorjs-codeFlask_Editor .style .token.string {    color: #9a6e3a;    background: hsla(0, 0%, 100%, 0.5);}.editorjs-codeFlask_Editor .token.atrule,.editorjs-codeFlask_Editor .token.attr-value,.editorjs-codeFlask_Editor .token.keyword {    color: #07a;}.editorjs-codeFlask_Editor .token.function,.editorjs-codeFlask_Editor .token.class-name {    color: #dd4a68;}.editorjs-codeFlask_Editor .token.regex,.editorjs-codeFlask_Editor .token.important,.editorjs-codeFlask_Editor .token.variable {    color: #e90;}/* 复制按钮样式 */.editorjs-codeFlask_CopyButton {    background-color: #409eff;    color: white;    border: none;    border-radius: 3px;    padding: 6px 12px;    margin-right: 8px;    font-size: 12px;    cursor: pointer;    transition: background-color 0.2s ease;    display: flex;    align-items: center;    justify-content: center;    min-width: 28px;    height: 28px;}.editorjs-codeFlask_CopyButton:hover {    background-color: #66b1ff;}.editorjs-codeFlask_CopyButton.copied {    background-color: #67c23a;}/* 折叠/展开按钮样式 */.editorjs-codeFlask_Toggle {    background-color: #909399;    color: white;    border: none;    border-radius: 3px;    padding: 0 8px;    font-size: 12px;    cursor: pointer;    transition: background-color 0.2s ease;    display: flex;    align-items: center;    justify-content: center;    min-width: 28px;    height: 28px;    font-weight: bold;}.editorjs-codeFlask_Toggle:hover {    background-color: #a6a9ad;}/* 响应式调整 */@media (max-width: 768px) {    .editorjs-codeFlask_Header {      padding: 6px 8px;    }      .editorjs-codeFlask_Editor .codeflask__textarea,    .editorjs-codeFlask_Editor .codeflask__pre,    .editorjs-codeFlask_Editor .codeflask__code {      font-size: 13px;      line-height: 19px;      padding: 8px;    }      .editorjs-codeFlask_Editor .codeflask.codeflask--has-line-numbers:before {      width: 35px;    }      .editorjs-codeFlask_Editor .codeflask__lines {      width: 35px;      font-size: 12px;    }}/* 滚动条样式 - 完全隐藏纵向滚动条 */.editorjs-codeFlask_Wrapper ::-webkit-scrollbar {    width: 0;/* 纵向滚动条宽度为0 */    height: 6px;/* 横向滚动条保持6px宽度 */}.editorjs-codeFlask_Wrapper ::-webkit-scrollbar-track {    background: transparent;    border-radius: 0;}.editorjs-codeFlask_Wrapper ::-webkit-scrollbar-thumb {    background: transparent;    border-radius: 0;}/* Firefox 滚动条隐藏 */.editorjs-codeFlask_Wrapper {    scrollbar-width: none;/* Firefox 隐藏纵向滚动条 */}.editorjs-codeFlask_Wrapper ::-moz-scrollbar {    width: 0;    height: 6px;}/* 焦点状态 */.editorjs-codeFlask_Wrapper:focus-within {    border-color: #409eff;    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);}/* 只读模式样式 */.editorjs-codeFlask_Wrapper.readonly .editorjs-codeFlask_Header {    background-color: #f5f7fa;}.editorjs-codeFlask_Wrapper.readonly .editorjs-codeFlask_Editor .codeflask__textarea {    cursor: default;}/* 确保所有元素正确显示 */.editorjs-codeFlask_Wrapper * {    box-sizing: border-box;}/* 修复行号对齐 */.editorjs-codeFlask_Editor .codeflask--has-line-numbers .codeflask__textarea,.editorjs-codeFlask_Editor .codeflask--has-line-numbers .codeflask__pre {    padding-left: 50px;}.editorjs-codeFlask_Editor .codeflask--has-line-numbers .codeflask__lines {    padding-top: 10px;}/* 语言显示元素 - 添加点击样式 */.editorjs-codeFlask_LangDisplay {    padding: 2px 8px;    background-color: #409eff;    color: white;    border-radius: 3px;    font-size: 12px;    font-weight: 500;    position: absolute;    left: 12px;    top: 50%;    transform: translateY(-50%);    cursor: pointer;    transition: all 0.2s ease;}.editorjs-codeFlask_LangDisplay:hover {    background-color: #66b1ff;    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}/* 语言选择弹窗 */.editorjs-codeFlask_LanguagePopup {    background-color: white;    border: 1px solid #dcdfe6;    border-radius: 4px;    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);    width: 250px;    max-height: 300px;    z-index: 1000;    overflow: hidden;}/* 搜索框 */.editorjs-codeFlask_LanguageSearch {    width: 100%;    padding: 8px 12px;    border: none;    border-bottom: 1px solid #ebeef5;    font-size: 12px;    outline: none;    box-sizing: border-box;}/* 语言列表 */.editorjs-codeFlask_LanguagesList {    max-height: 250px;    overflow-y: auto;}/* 语言选项 */.editorjs-codeFlask_LanguageItem {    padding: 8px 12px;    font-size: 12px;    cursor: pointer;    transition: background-color 0.2s ease;}.editorjs-codeFlask_LanguageItem:hover {    background-color: #f5f7fa;}.editorjs-codeFlask_LanguageItem.selected {    background-color: #ecf5ff;    color: #409eff;    font-weight: 500;}/* 滚动条样式 */.editorjs-codeFlask_LanguagesList::-webkit-scrollbar {    width: 6px;}.editorjs-codeFlask_LanguagesList::-webkit-scrollbar-track {    background-color: #f5f7fa;}.editorjs-codeFlask_LanguagesList::-webkit-scrollbar-thumb {    background-color: #c0c4cc;    border-radius: 3px;}.editorjs-codeFlask_LanguagesList::-webkit-scrollbar-thumb:hover {    background-color: #909399;}.ce-block {    margin-bottom: 20px;}.ce-block__content,.ce-toolbar__content {        /* max-width:calc(100% - 50px) */        margin-left: auto;    margin-right: auto;}.ce-paragraph {    line-height: 1.6em;    outline: none;    text-indent: 2em;    font-size: 16px;}.ce-paragraph--right {    text-align: right;}.ce-paragraph--center {    text-align: center;}.ce-paragraph--left {    text-align: left;}.ce-paragraph--justify {    text-align: justify;}.ce-paragraph-text-indent {    text-align: justify;}.ce-paragraph:empty::before{content: attr(data-placeholder);color: #707684;font-weight: normal;opacity: 0;}/** Show placeholder at the first paragraph if Editor is empty */.codex-editor--empty .ce-block:first-child .ce-paragraph:empty::before {opacity: 1;}.codex-editor--toolbox-opened .ce-block:first-child .ce-paragraph:empty::before,.codex-editor--empty .ce-block:first-child .ce-paragraph:empty:focus::before {opacity: 0;}.ce-paragraph p:first-of-type{    margin-top: 0;}.ce-paragraph p:last-of-type{    margin-bottom: 0;}.svg-icon {    width: 1em;    height: 1em;}.svg-icon path,.svg-icon polygon,.svg-icon rect {    fill: #4691f6;}.svg-icon circle {    stroke: #4691f6;    stroke-width: 1;}.ce-block {    margin-bottom: 20px;}.ce-block__content,.ce-toolbar__content {        /* max-width:calc(100% - 50px) */        margin-left: auto;    margin-right: auto;}.cdx-list {        margin:0;        outline:none;        display:block;        counter-reset:item;        padding:6px;}.cdx-list__item {        line-height:1.45em;        display:block;        padding-top:8px;        margin-left: 2em;}.cdx-list__item-children {        display:block;}.cdx-list__item {        outline:none}.cdx-list__item-content {        word-break:break-word;        white-space:pre-wrap;        grid-area:content;        padding-left:8px}.cdx-list__item:before {        counter-increment:item;        white-space:nowrap}.cdx-list-li-container {display: flex;}.cdx-list-ordered .cdx-list__item:before {        /* content:counters(item,".",numeric) "." */}.cdx-list-ordered {        list-style-type: none;        margin-left: -15px;        counter-reset:item;        font-size: 16px;}.cdx-list-unordered {        font-size: 16px;}.cdx-list-unordered .cdx-list__item:before {        content:"•"}.cdx-list-checklist .cdx-list__item:before {        content:""}.cdx-list__settings .cdx-settings-button {        width:50%}.cdx-list__checkbox {        padding-top:calc((1.45em - 1.2em) / 2);        grid-area:checkbox;        width:1.2em;        height:1.2em;        display:flex;        cursor:pointer;        font-size: 16px;}.cdx-list__checkbox svg {        opacity:0;        height:1.2em;        width:1.2em;        left:-1px;        top:-1px;        position:absolute}@media (hover:hover) {        .cdx-list__checkbox:not(.cdx-list__checkbox--no-hover):hover .cdx-list__checkbox-check svg {        opacity:1}}.cdx-list__checkbox--checked-1 {        line-height:1.45em}@media (hover:hover) {        .cdx-list__checkbox--checked-1:not(.cdx-list__checkbox--checked-1--no-hover):hover .cdx-checklist__checkbox-check {        background:#0059AB;        border-color:#0059AB}}.cdx-list__checkbox--checked-1 .cdx-list__checkbox-check {        background:#369FFF;        border-color:#369FFF}.cdx-list__checkbox--checked-1 .cdx-list__checkbox-check svg {        opacity:1}.cdx-list__checkbox--checked-1 .cdx-list__checkbox-check svg path {        stroke:#fff}.cdx-list__checkbox--checked-1 .cdx-list__checkbox-check:before {        opacity:0;        visibility:visible;        transform:scale(2.5)}.cdx-list__checkbox-check {        cursor:pointer;        display:inline-block;        position:relative;        margin:0 auto;        width:1.2em;        height:1.2em;        box-sizing:border-box;        border-radius:5px;        border:1px solid #C9C9C9;        background:#fff}.cdx-list__checkbox-check:before {        content:"";        position:absolute;        top:0;        right:0;        bottom:0;        left:0;        border-radius:100%;        background-color:#369FFF;        visibility:hidden;        pointer-events:none;        transform:scale(1);        transition:transform .4s ease-out,opacity .4s}.cdx-list__checkbox-check--disabled {        pointer-events:none}.cdx-list-start-with-field {        background:#F8F8F8;        border:1px solid rgba(226,226,229,.2);        border-radius:6px;        padding:2px;        display:grid;        grid-template-columns:auto auto 1fr;        grid-template-rows:auto}.cdx-list-start-with-field--invalid {        background:#FFECED;        border:1px solid #E13F3F}.cdx-list-start-with-field--invalid .cdx-list-start-with-field__input {        color:#e13f3f}.cdx-list-start-with-field__input {        font-size:16px;        outline:none;        font-weight:500;        font-family:inherit;        border:0;        background:transparent;        margin:0;        padding:0;        line-height:22px;        min-width:calc(100% - 10px)}.cdx-list-start-with-field__input::placeholder {        color:#797979;        font-weight:500}.inline-code {background: rgba(250, 239, 240, 0.78);color: #b44437;padding: 3px 4px;border-radius: 5px;margin: 0 1px;font-family: inherit;font-size: 0.86em;font-weight: 500;letter-spacing: 0.3px;}

IT618应用中心 发表于 6 天前

好的,谢谢,2楼是AI分析的,我正在测试 session.use_strict_mode = 0 配置是不是会改善,等测试完了再试试你帮写的代码。
页: [1]
查看完整版本: 关于PHP8.2 错误日志大量 PHP Fatal error: Out of memory New