Ubuntu 14.04.4 LTS php 5.5 非常常见的内部服务器错误

Ubuntu 14.04.4 LTS php 5.5 very common internal server error

如果一个函数被调用了

if ($this->_wordWrap(&$section)) { return; //自动换行已经负责调用 addText }

函数定义就像 私有函数 _wordWrap($section) {

改成这样

if ($this->_wordWrap($section)) { return; //自动换行已经负责调用 addText }

函数定义就像 私有函数 _wordWrap(&$section) {

这将解决大部分与内部服务器错误相关的错误

Ubuntu 14.04.4 LTS php 5.5 非常常见的内部服务器错误

如果一个函数被调用过

if ($this->_wordWrap(&$section)) { return; //自动换行已经负责调用 addText }

函数定义类似于 private function _wordWrap($section) {

改成这样

if ($this->_wordWrap($section)) { return; //自动换行已经负责调用 addText }

函数定义类似于私有函数 _wordWrap(&$section) {

这将解决大部分与内部服务器错误相关的错误