我有一个古老的脚本,最近我得到这个错误:
- Fatal error: Call-time pass-by-reference has been removed in /****/******/public_html/****/cp-list-summary.PHP on line 100
并且它看起来像这个文件上的第100行:
你试图在array_push中传递一个指向你的数组的指针.这就是为什么遇到致命错误的原因.只需使用:
- array_push( $image_set,$images[fname] );
Note:
array_push()
will raise a warning if the first argument is not an array.